Skip to content

Commit 3ec93a2

Browse files
committed
fix: setup pnpm before node cache in www deploy
1 parent 3870c39 commit 3ec93a2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/www-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24+
- name: Setup pnpm
25+
uses: pnpm/action-setup@v4
26+
with:
27+
version: 10
28+
2429
- name: Setup Node
2530
uses: actions/setup-node@v4
2631
with:
2732
node-version: '20'
2833
cache: 'pnpm'
2934
cache-dependency-path: pnpm-lock.yaml
3035

31-
- name: Setup pnpm
32-
uses: pnpm/action-setup@v4
33-
with:
34-
version: 10
35-
3636
- name: Install deps
3737
working-directory: .
3838
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)