File tree Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 5
5
build :
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - uses : actions/checkout@v2
9
- - name : Use Node.js 16.x
10
- uses : actions/setup-node@v1
11
- with :
12
- node-version : 16.x
13
- - name : npm install, build, and test
14
- run : |
15
- npm install
16
- npm run build
17
- npm test
18
- env :
19
- CI : true
8
+ - uses : actions/checkout@v3
9
+ - uses : actions/setup-node@v3
10
+ with :
11
+ node-version : 18
12
+ registry-url : https://registry.npmjs.org/
13
+ cache : npm
14
+ - run : npm ci
15
+ - run : npm test
16
+ env :
17
+ CI : true
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v3
12
12
- uses : actions/setup-node@v3
13
13
with :
14
- node-version : 14
14
+ node-version : 18
15
15
registry-url : https://registry.npmjs.org/
16
16
cache : npm
17
17
- run : npm ci
You can’t perform that action at this time.
0 commit comments