Skip to content

Commit

Permalink
fix: pnpm in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Aug 29, 2024
1 parent ea4a861 commit c11aa05
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: |
npm install -g pnpm
pnpm i
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
Expand Down Expand Up @@ -57,7 +59,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: |
npm install -g pnpm
pnpm i
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit c11aa05

Please sign in to comment.