Skip to content

Commit c0e673f

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

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-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'

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"dependencies": false,
3737
"useYarn": false
3838
},
39+
"packageManager": "[email protected]+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531",
3940
"categories": [
4041
"Other"
4142
],

0 commit comments

Comments
 (0)