Skip to content

Commit

Permalink
fix(release): move step of installing pnpm above
Browse files Browse the repository at this point in the history
  • Loading branch information
zr87 committed Aug 7, 2024
1 parent 42199ef commit 25ecaf6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: npm audit signatures
Expand Down

0 comments on commit 25ecaf6

Please sign in to comment.