We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a694256 commit 36e0cd4Copy full SHA for 36e0cd4
.github/workflows/npm-publish-github-packages.yml
@@ -12,11 +12,12 @@ 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:
18
node-version: 20
- - run: npm ci
19
- - run: npm test
+ - run: pnpm i
20
+ - run: pnpm build
21
22
publish-gpr:
23
needs: build
@@ -26,11 +27,12 @@ jobs:
26
27
packages: write
28
29
30
31
32
33
34
registry-url: https://npm.pkg.github.com/
- - run: npm publish
35
36
+ - run: pnpm publish
37
env:
38
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments