@gowri48/npmpublish 2.5.4 → 2.5.6

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.
@@ -9,20 +9,16 @@ permissions:
9
9
  jobs:
10
10
  publish:
11
11
  runs-on: ubuntu-latest
12
-
13
12
  steps:
14
13
  - uses: actions/checkout@v6
15
- - uses: pnpm/action-setup@v6
16
- with:
17
- version: 11
18
14
 
19
15
 
20
- - uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
16
+ - uses: gowridurgad/setup-node@testing-1009
21
17
  with:
22
- node-version: '24'
23
- cache: pnpm
18
+ node-version: '24'
19
+ cache: npm
24
20
 
25
21
 
26
- - run: pnpm install
22
+ - run: npm install
27
23
 
28
- - run: pnpm publish --no-git-checks
24
+ - run: npm publish
package/package.json CHANGED
@@ -1,22 +1,23 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "2.5.4",
3
+ "version": "2.5.6",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
7
7
  "author": "gowridurgad",
8
8
  "license": "ISC",
9
+ "scripts": {
10
+ "build": "node -e \"console.log('build ok')\"",
11
+ "test": "node -e \"console.log('ok')\""
12
+ },
9
13
  "publishConfig": {
10
14
  "access": "public"
15
+
11
16
  },
12
17
  "dependencies": {
13
18
  "axios": "^1.7.0"
14
19
  },
15
20
  "engines": {
16
21
  "node": ">=12"
17
- },
18
- "scripts": {
19
- "build": "node -e \"console.log('build ok')\"",
20
- "test": "node -e \"console.log('ok')\""
21
22
  }
22
- }
23
+ }