Skip to content

Commit 72a6fc1

Browse files
committed
ci: fix
1 parent 8419b8e commit 72a6fc1

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: "pnpm"
2929

3030
- name: Install Dependencies
31-
run: pnpm install --frozen-lockfile
31+
run: pnpm install
3232

3333
- name: Code Style Check
3434
run: pnpm biome check
@@ -38,27 +38,25 @@ jobs:
3838

3939
test:
4040
runs-on: ${{ matrix.os }}
41-
timeout-minutes: 15
4241
strategy:
4342
matrix:
4443
os: [ubuntu-latest, windows-latest]
45-
node-version: [20, 22]
4644

4745
steps:
4846
- name: Checkout
4947
uses: actions/checkout@v5
5048

51-
- name: Setup Pnpm
52-
run: npm install -g corepack@latest && corepack enable
49+
- name: Install Pnpm
50+
run: npm i -g corepack@latest --force && corepack enable
5351

5452
- name: Setup Node.js
5553
uses: actions/setup-node@v4
5654
with:
57-
node-version: ${{ matrix.node-version }}
55+
node-version: 22.20.0
5856
cache: "pnpm"
5957

6058
- name: Install Dependencies
61-
run: pnpm install --frozen-lockfile
59+
run: pnpm install
6260

6361
- name: Run Tests
6462
run: pnpm test

0 commit comments

Comments
 (0)