Skip to content

Commit d2750ae

Browse files
committed
feat: bump action versions
1 parent c18ce67 commit d2750ae

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v5
20+
21+
- name: Install pnpm
22+
uses: pnpm/action-setup@v4
23+
2024
- name: Install Node.js
21-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2226
with:
23-
node-version: 20.x
24-
- run: yarn install
25-
- run: xvfb-run -a yarn test
27+
node-version: 22.x
28+
cache: "pnpm"
29+
30+
- run: pnpm install
31+
- run: xvfb-run -a pnpm test
2632
if: runner.os == 'Linux'
27-
- run: yarn test
33+
- run: pnpm test
2834
if: runner.os != 'Linux'

0 commit comments

Comments
 (0)