File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 23
23
uses : actions/setup-node@v4
24
24
with :
25
25
node-version : ${{ matrix.node }}
26
+ cache : ' pnpm'
26
27
27
28
- name : Enable Corepack
28
29
run : corepack enable
31
32
uses : actions/setup-node@v4
32
33
with :
33
34
node-version : ${{ matrix.node }}
34
- cache : pnpm
35
+ cache : ' pnpm'
35
36
36
37
- name : Install Dependencies
37
38
run : pnpm install
Original file line number Diff line number Diff line change 9
9
release :
10
10
name : Release
11
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ node-version : [20]
12
15
steps :
13
16
- name : Checkout Repo
14
17
uses : actions/checkout@v4
22
25
- name : Setup Node.js LTS
23
26
uses : actions/setup-node@v4
24
27
with :
25
- node-version : 20
26
- cache : pnpm
28
+ node-version : ${{ matrix.node-version }}
29
+ cache : ' pnpm'
27
30
28
31
- name : Install Dependencies
29
32
run : pnpm install
You can’t perform that action at this time.
0 commit comments