Skip to content

Commit bc97f84

Browse files
committed
ci(test): bump deps
1 parent 2266669 commit bc97f84

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/test.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Install pnpm
19-
uses: pnpm/action-setup@v2
19+
uses: pnpm/action-setup@v4
2020
with:
21-
version: 8
21+
version: 9
2222

2323
- name: Install Node.js
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2525
with:
26-
node-version: 20
26+
node-version: 22
2727
cache: pnpm
2828

2929
- name: Install dependencies
30-
run: pnpm install --frozen-lockfile --ignore-scripts
30+
run: pnpm install --ignore-scripts
3131

3232
- name: Run tests
3333
run: pnpm test
@@ -36,25 +36,25 @@ jobs:
3636
runs-on: ubuntu-latest
3737
strategy:
3838
matrix:
39-
node-version: [18]
39+
node-version: [20, 18]
4040
name: Node.js ${{ matrix.node-version }} Quick
4141
steps:
4242
- name: Checkout the repository
4343
uses: actions/checkout@v4
4444

4545
- name: Install pnpm
46-
uses: pnpm/action-setup@v2
46+
uses: pnpm/action-setup@v4
4747
with:
48-
version: 8
48+
version: 9
4949

5050
- name: Install Node.js ${{ matrix.node-version }}
51-
uses: actions/setup-node@v3
51+
uses: actions/setup-node@v4
5252
with:
5353
node-version: ${{ matrix.node-version }}
5454
cache: pnpm
5555

5656
- name: Install dependencies
57-
run: pnpm install --frozen-lockfile --ignore-scripts
57+
run: pnpm install --ignore-scripts
5858

5959
- name: Run unit tests
6060
run: pnpm test:coverage

0 commit comments

Comments
 (0)