Skip to content

Commit 6cb2930

Browse files
committed
fix: reorder pnpm and node setup steps in workflow
1 parent 73342b8 commit 6cb2930

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23+
- name: Setup pnpm
24+
uses: pnpm/action-setup@v2
25+
with:
26+
version: latest
27+
2328
- name: Setup Node
2429
uses: actions/setup-node@v4
2530
with:
2631
node-version: "20"
2732
cache: "pnpm"
2833

29-
- name: Setup pnpm
30-
uses: pnpm/action-setup@v2
31-
with:
32-
version: latest
33-
3434
- name: Install dependencies
3535
run: pnpm install
3636

0 commit comments

Comments
 (0)