@gowri48/publishingtonpm 0.0.2 → 0.0.4

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.
@@ -12,14 +12,12 @@ jobs:
12
12
  steps:
13
13
  - uses: actions/checkout@v5
14
14
 
15
- - uses: actions/setup-node@v6
15
+ - uses: actions/setup-node@v4
16
16
  with:
17
- node-version: '24'
17
+ node-version: '22'
18
18
  registry-url: 'https://registry.npmjs.org'
19
19
 
20
-
20
+ - run: npm install -g npm@11.11.0 && npm install -g npm@latest
21
+ - run: NODE_AUTH_TOKEN="" npm publish
21
22
 
22
- - name: Bump version (required for publish)
23
- run: npm version patch --no-git-tag-version
24
23
 
25
- - run: npm publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/publishingtonpm",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/test-setup-node",
@@ -15,10 +15,7 @@
15
15
  "dependencies": {
16
16
  "jest": "^29.6.1"
17
17
  },
18
- "devEngines": {
19
- "runtime": {
20
- "name": "node",
21
- "version": "24"
22
- }
18
+ "engines": {
19
+ "node": ">=20"
23
20
  }
24
21
  }