We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe2c23 commit df3ee6fCopy full SHA for df3ee6f
.github/workflows/npm-publish.yml
@@ -12,10 +12,13 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v4
15
+ - uses: pnpm/action-setup@v4
16
- uses: actions/setup-node@v4
17
with:
- node-version: 20
18
- - run: npm ci
+ node-version: latest
19
+ cache: pnpm
20
+ registry-url: https://registry.npmjs.org
21
+ - run: pnpm build
22
23
publish-npm:
24
needs: build
@@ -24,9 +27,8 @@ jobs:
27
25
28
26
29
30
31
registry-url: https://registry.npmjs.org/
- - run: npm publish
32
+ - run: pnpm publish
33
env:
34
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package-lock.json
0 commit comments