File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 12
12
- uses : pnpm/action-setup@v2
13
13
with :
14
14
version : 7
15
- - uses : actions/setup-node@v3
15
+ - uses : actions/setup-node@v4
16
16
with :
17
17
node-version : 20.x
18
18
cache : ' pnpm'
Original file line number Diff line number Diff line change 20
20
- uses : pnpm/action-setup@v2
21
21
with :
22
22
version : 7
23
- - uses : actions/setup-node@v3
23
+ - uses : actions/setup-node@v4
24
24
with :
25
25
node-version : 20.x
26
26
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -23,15 +23,17 @@ jobs:
23
23
steps :
24
24
- name : Clone repository
25
25
uses : actions/checkout@v4
26
-
26
+ - uses : pnpm/action-setup@v2
27
+ with :
28
+ version : 7
27
29
- name : Set up Node.js
28
30
uses : actions/setup-node@v4
29
31
with :
30
32
node-version : ${{ matrix.node }}
31
- cache : npm
33
+ cache : ' pnpm '
32
34
33
- - name : Install npm dependencies
34
- run : npm ci
35
+ - name : Install pnpm dependencies
36
+ run : pnpm install --frozen-lockfile
35
37
36
38
- name : Run examples
37
39
run : cd examples && npm run build
You can’t perform that action at this time.
0 commit comments