Skip to content

Commit 6e7dc29

Browse files
committed
Fix CI.
1 parent 50462e9 commit 6e7dc29

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,30 @@ jobs:
1212
matrix:
1313
node: ["18", "20", "22"]
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: actions/setup-node@v4
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
run_install: false
22+
23+
- name: Install node
24+
uses: actions/setup-node@v4
1725
with:
1826
node-version: ${{ matrix.node }}
1927
cache: "pnpm"
20-
- name: Setup pnpm
21-
uses: pnpm/action-setup@v4
28+
29+
- name: Install dependencies
30+
run: pnpm install --frozen-lockfile
31+
2232
- name: Cache turbo setup
2333
uses: actions/cache@v4
2434
with:
2535
path: .turbo
2636
key: ${{ runner.os }}-turbo-${{ github.sha }}
2737
restore-keys: |
2838
${{ runner.os }}-turbo-
39+
2940
- name: Run CI with turbo
3041
run: pnpm run ci

0 commit comments

Comments
 (0)