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