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 88 default :
99 strategy :
1010 matrix :
11- node :
12- - 18
13- - 20
11+ node : [18, 20]
1412 os :
15- # - macOS-latest
16- # - windows-latest # I don't have a Windows machine to debug
1713 - ubuntu-latest
1814 runs-on : ${{ matrix.os }}
1915 steps :
Original file line number Diff line number Diff line change @@ -11,25 +11,22 @@ jobs:
1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- node-version : [20]
14+ node : [20]
1515 steps :
1616 - name : Checkout Repo
1717 uses : actions/checkout@v4
1818 with :
1919 # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2020 fetch-depth : 30
2121
22- - name : Enable Corepack
23- run : corepack enable
24-
2522 - name : Install pnpm
2623 uses : pnpm/action-setup@v4
2724
2825 - name : Setup Node.js
2926 uses : actions/setup-node@v4
3027 with :
31- node-version : ${{ matrix.node-version }}
32- cache : pnpm
28+ node-version : ${{ matrix.node }}
29+ cache : ' pnpm'
3330
3431 - name : Install Dependencies
3532 run : pnpm install
You can’t perform that action at this time.
0 commit comments