@gowri48/npmpublish 1.1.3 → 1.1.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.
@@ -5,13 +5,7 @@ on:
5
5
 
6
6
  jobs:
7
7
  build:
8
- runs-on: ${{ matrix.os-version }}
9
-
10
- strategy:
11
- fail-fast: false
12
- matrix:
13
- node-version: [22, 24]
14
- os-version: [ubuntu-latest, windows-latest, macos-latest]
8
+ runs-on: ubuntu-latest
15
9
 
16
10
  steps:
17
11
  - uses: actions/checkout@v5
@@ -19,12 +13,12 @@ jobs:
19
13
  with:
20
14
  version: 10
21
15
 
22
- - name: Setup Node (${{ matrix.node-version }})
23
- # uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
24
- uses: gowridurgad/setup-node@dummy-token-removal
16
+ - name: Setup Node
17
+ uses: Satishchoudhary94/setup-node@fix/oidc-support-1440
25
18
  with:
26
- node-version: ${{ matrix.node-version }}
19
+ node-version: '24'
27
20
  registry-url: 'https://registry.npmjs.org'
28
21
 
29
- - name: pnpm install
30
- run: pnpm install
22
+ - run: pnpm publish
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,21 +1,21 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
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
- "test": "echo \"Error: no test specified\" && exit 1"
11
- },
12
9
  "publishConfig": {
13
- "access": "public"
10
+ "access": "public"
14
11
  },
15
- "dependencies": {
12
+ "dependencies": {
16
13
  "axios": "^1.7.0"
17
14
  },
18
15
  "engines": {
19
16
  "node": ">=12"
17
+ },
18
+ "scripts": {
19
+ "test": "echo \"Error: no test specified\" && exit 1"
20
20
  }
21
- }
21
+ }