@gowri48/npmpublish 1.3.6 → 1.3.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.
@@ -22,9 +22,11 @@ jobs:
22
22
  node-version: "24"
23
23
  registry-url: "https://registry.npmjs.org"
24
24
  cache: pnpm
25
- package-manager-cache: false
25
+ package-manager-cache: true
26
26
 
27
27
  - run: pnpm install
28
+ - run: pnpm build
29
+ - run: pnpm test
28
30
 
29
31
  - name: Publish
30
32
  run: pnpm publish --recursive --no-git-checks --verbose
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gowri48/npmpublish",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
4
4
  "description": "Your package description",
5
5
  "main": "index.js",
6
6
  "repository": "github:gowridurgad/npm-publish",
@@ -16,6 +16,7 @@
16
16
  "node": ">=12"
17
17
  },
18
18
  "scripts": {
19
- "test": "echo \"Error: no test specified\" && exit 1"
19
+ "build": "node -e \"console.log('build ok')\"",
20
+ "test": "node -e \"console.log('ok')\""
20
21
  }
21
22
  }