File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments