Skip to content

Commit bf76672

Browse files
committed
Fix build
1 parent 70eb5ed commit bf76672

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build-pr.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616

17-
- name: Install Node.js
18-
uses: actions/setup-node@v6
19-
with:
20-
node-version: 24
2117
- name: Install pnpm
2218
uses: pnpm/action-setup@v4
2319
with:
2420
version: 10
2521
run_install: false
22+
- name: Install Node.js
23+
uses: actions/setup-node@v6
24+
with:
25+
node-version: 24
26+
cache: pnpm
2627

2728
- name: Install dependencies
2829
run: pnpm install

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616

17-
- name: Install Node.js
18-
uses: actions/setup-node@v6
19-
with:
20-
node-version: 24
21-
cache: pnpm
2217
- name: Install pnpm
2318
uses: pnpm/action-setup@v4
2419
with:
2520
version: 10
2621
run_install: false
22+
- name: Install Node.js
23+
uses: actions/setup-node@v6
24+
with:
25+
node-version: 24
26+
cache: pnpm
2727

2828
- name: Install dependencies
2929
run: pnpm install

0 commit comments

Comments
 (0)