File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed
Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 if : " !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
99 steps :
10- - uses : actions/checkout@v2
11-
10+ - uses : actions/checkout@v3
11+
12+ - name : Enable Corepack
13+ run : corepack enable
14+
1215 - name : Prepare repository
1316 run : git fetch --unshallow --tags
1417
15- - name : Use Node.js 18.x
16- uses : actions/setup-node@v1
17- with :
18- node-version : 18.x
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v4
1920
2021 - name : Install dependencies
2122 uses : bahmutov/npm-install@v1
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ on: [push, pull_request]
55jobs :
66 test :
77 runs-on : ubuntu-latest
8- strategy :
9- matrix :
10- node-version : [18.x]
118 steps :
129 - uses : actions/checkout@v4
10+
11+ - name : Enable Corepack
12+ run : corepack enable
1313
1414 - name : Setup Node.js
1515 uses : actions/setup-node@v4
You can’t perform that action at this time.
0 commit comments