Skip to content

Commit

Permalink
ci: install pnpm
Browse files Browse the repository at this point in the history
Signed-off-by: rare-magma <[email protected]>
  • Loading branch information
rare-magma committed Feb 25, 2024
1 parent 11052d4 commit ce47e4a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,24 @@ jobs:
needs:
- test
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- uses: actions/setup-node@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install dependencies
run: npm install -g pnpm && pnpm install
run: pnpm install

- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
Expand Down

0 comments on commit ce47e4a

Please sign in to comment.