Skip to content

Commit 8f1e350

Browse files
committed
Move to pnpm 9
1 parent 919239b commit 8f1e350

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)