Skip to content

Commit 52d358f

Browse files
committed
fix, build: reorder pnpm and node setup
1 parent 74b1944 commit 52d358f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy-website.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828

29+
- name: Setup pnpm
30+
uses: pnpm/action-setup@v4
31+
with:
32+
run_install: false
33+
2934
- name: Setup Node.js
3035
uses: actions/setup-node@v4
3136
with:
3237
node-version: 20
3338
cache: pnpm
3439
cache-dependency-path: website/pnpm-lock.yaml
3540

36-
- name: Setup pnpm
37-
uses: pnpm/action-setup@v4
38-
with:
39-
run_install: false
40-
4141
- name: Install dependencies
4242
working-directory: website
4343
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)