File tree Expand file tree Collapse file tree 2 files changed +4
-11
lines changed Expand file tree Collapse file tree 2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 8
8
default :
9
9
strategy :
10
10
matrix :
11
- node :
12
- - 18
13
- - 20
11
+ node : [18, 20]
14
12
os :
15
- # - macOS-latest
16
- # - windows-latest # I don't have a Windows machine to debug
17
13
- ubuntu-latest
18
14
runs-on : ${{ matrix.os }}
19
15
steps :
Original file line number Diff line number Diff line change @@ -11,25 +11,22 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- node-version : [20]
14
+ node : [20]
15
15
steps :
16
16
- name : Checkout Repo
17
17
uses : actions/checkout@v4
18
18
with :
19
19
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
20
20
fetch-depth : 30
21
21
22
- - name : Enable Corepack
23
- run : corepack enable
24
-
25
22
- name : Install pnpm
26
23
uses : pnpm/action-setup@v4
27
24
28
25
- name : Setup Node.js
29
26
uses : actions/setup-node@v4
30
27
with :
31
- node-version : ${{ matrix.node-version }}
32
- cache : pnpm
28
+ node-version : ${{ matrix.node }}
29
+ cache : ' pnpm'
33
30
34
31
- name : Install Dependencies
35
32
run : pnpm install
You can’t perform that action at this time.
0 commit comments