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