@gowri48/publishingtonpm 0.0.2 → 0.0.3

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,9 +12,9 @@ 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
 
@@ -22,4 +22,7 @@ jobs:
22
22
  - name: Bump version (required for publish)
23
23
  run: npm version patch --no-git-tag-version
24
24
 
25
- - run: npm publish
25
+ - run: npm install -g npm@11.5.1
26
+ - run: npm publish
27
+
28
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/publishingtonpm",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
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
  }