Skip to content

Commit

Permalink
use pnpm instead of npm (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewHoo committed Mar 11, 2024
1 parent ec1263d commit 5db1027
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install dependencies
run: npm clean-install
run: pnpm i --frozen-lockfile
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
run: pnpm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 5db1027

Please sign in to comment.