@gowri48/npmpublish 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ name: testing1440
2
+ on:
3
+ workflow_dispatch:
4
+ jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v5
9
+ - uses: actions/setup-node@v6
10
+ with:
11
+ node-version: '24.x'
12
+ registry-url: 'https://registry.npmjs.org'
13
+
14
+ - run: npm publish --access public
15
+ env:
16
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # npm-publish
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@gowri48/npmpublish",
3
+ "version": "0.0.8",
4
+ "description": "Your package description",
5
+ "main": "index.js",
6
+ "repository": "github:gowridurgad/test-setup-node",
7
+ "author": "gowridurgad",
8
+ "license": "ISC",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+
15
+ },
16
+ "dependencies": {
17
+ "jest": "^29.6.1"
18
+ },
19
+ "engines": {
20
+ "node": ">=18"
21
+ }
22
+ }