File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,38 +14,39 @@ jobs:
1414 - name : Checkout the repository
1515 uses : actions/checkout@v4
1616 - name : Install pnpm
17- uses : pnpm/action-setup@v2
17+ uses : pnpm/action-setup@v4
1818 with :
19- version : 8
19+ version : 9
2020 - name : Install Node.js
21- uses : actions/setup-node@v3
21+ uses : actions/setup-node@v4
2222 with :
23- node-version : 20
23+ node-version : 22
2424 cache : pnpm
2525 - name : Install dependencies
26- run : pnpm install --frozen-lockfile -- ignore-scripts
26+ run : pnpm install --ignore-scripts
2727 - name : Run tests
2828 run : pnpm test
2929 short :
3030 runs-on : ubuntu-latest
3131 strategy :
3232 matrix :
3333 node-version :
34+ - 20
3435 - 18
3536 name : Node.js ${{ matrix.node-version }} Quick
3637 steps :
3738 - name : Checkout the repository
3839 uses : actions/checkout@v4
3940 - name : Install pnpm
40- uses : pnpm/action-setup@v2
41+ uses : pnpm/action-setup@v4
4142 with :
42- version : 8
43+ version : 9
4344 - name : Install Node.js ${{ matrix.node-version }}
44- uses : actions/setup-node@v3
45+ uses : actions/setup-node@v4
4546 with :
4647 node-version : ${{ matrix.node-version }}
4748 cache : pnpm
4849 - name : Install dependencies
49- run : pnpm install --frozen-lockfile -- ignore-scripts
50+ run : pnpm install --ignore-scripts
5051 - name : Run unit tests
5152 run : pnpm unit
You can’t perform that action at this time.
0 commit comments