Skip to content

Commit f440867

Browse files
committed
chore: reorganize GitHub Actions workflow for better clarity
- Moved the Node setup step below the pnpm setup for improved readability. - Ensured the pnpm version is specified before setting up Node.
1 parent ebedc74 commit f440867

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/actions.yaml

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

24-
- name: Setup Node
25-
uses: actions/setup-node@v4
26-
with:
27-
node-version: '20'
28-
cache: 'pnpm'
29-
3024
- name: Setup pnpm
3125
uses: pnpm/action-setup@v3
3226
with:
3327
version: 8
3428
run_install: false
29+
30+
- name: Setup Node
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: '20'
34+
cache: 'pnpm'
3535

3636
- name: Get pnpm store directory
3737
shell: bash

0 commit comments

Comments
 (0)