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 7
7
runs-on : ubuntu-latest
8
8
if : " !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
9
9
steps :
10
- - uses : actions/checkout@v2
11
-
10
+ - uses : actions/checkout@v3
11
+
12
+ - name : Enable Corepack
13
+ run : corepack enable
14
+
12
15
- name : Prepare repository
13
16
run : git fetch --unshallow --tags
14
17
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
19
20
20
21
- name : Install dependencies
21
22
uses : bahmutov/npm-install@v1
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ on: [push, pull_request]
5
5
jobs :
6
6
test :
7
7
runs-on : ubuntu-latest
8
- strategy :
9
- matrix :
10
- node-version : [18.x]
11
8
steps :
12
9
- uses : actions/checkout@v4
10
+
11
+ - name : Enable Corepack
12
+ run : corepack enable
13
13
14
14
- name : Setup Node.js
15
15
uses : actions/setup-node@v4
You can’t perform that action at this time.
0 commit comments