File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -14,38 +14,39 @@ jobs:
14
14
- name : Checkout the repository
15
15
uses : actions/checkout@v4
16
16
- name : Install pnpm
17
- uses : pnpm/action-setup@v2
17
+ uses : pnpm/action-setup@v4
18
18
with :
19
- version : 8
19
+ version : 9
20
20
- name : Install Node.js
21
- uses : actions/setup-node@v3
21
+ uses : actions/setup-node@v4
22
22
with :
23
- node-version : 20
23
+ node-version : 22
24
24
cache : pnpm
25
25
- name : Install dependencies
26
- run : pnpm install --frozen-lockfile -- ignore-scripts
26
+ run : pnpm install --ignore-scripts
27
27
- name : Run tests
28
28
run : pnpm test
29
29
short :
30
30
runs-on : ubuntu-latest
31
31
strategy :
32
32
matrix :
33
33
node-version :
34
+ - 20
34
35
- 18
35
36
name : Node.js ${{ matrix.node-version }} Quick
36
37
steps :
37
38
- name : Checkout the repository
38
39
uses : actions/checkout@v4
39
40
- name : Install pnpm
40
- uses : pnpm/action-setup@v2
41
+ uses : pnpm/action-setup@v4
41
42
with :
42
- version : 8
43
+ version : 9
43
44
- name : Install Node.js ${{ matrix.node-version }}
44
- uses : actions/setup-node@v3
45
+ uses : actions/setup-node@v4
45
46
with :
46
47
node-version : ${{ matrix.node-version }}
47
48
cache : pnpm
48
49
- name : Install dependencies
49
- run : pnpm install --frozen-lockfile -- ignore-scripts
50
+ run : pnpm install --ignore-scripts
50
51
- name : Run unit tests
51
52
run : pnpm unit
You can’t perform that action at this time.
0 commit comments