Skip to content

Commit c581269

Browse files
committed
chore: reorder Node.js setup step in CI workflow
1 parent 9973f8b commit c581269

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v4
2626

27-
- name: Set up Node.js
28-
uses: actions/setup-node@v4
29-
with:
30-
node-version: ${{ matrix.node-version }}
31-
cache: 'pnpm'
32-
3327
- name: Install pnpm
3428
uses: pnpm/action-setup@v4
3529
with:
3630
version: 10.17.1
3731
run_install: false
3832

33+
- name: Set up Node.js
34+
uses: actions/setup-node@v4
35+
with:
36+
node-version: ${{ matrix.node-version }}
37+
cache: 'pnpm'
38+
3939
- name: Install dependencies
4040
run: pnpm install --frozen-lockfile
4141

0 commit comments

Comments
 (0)