File tree Expand file tree Collapse file tree 4 files changed +20
-8294
lines changed Expand file tree Collapse file tree 4 files changed +20
-8294
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " npm"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " daily"
7
+ - package-ecosystem : " github-actions"
8
+ directory : " /"
9
+ schedule :
10
+ interval : " daily"
Original file line number Diff line number Diff line change @@ -10,17 +10,16 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
matrix :
13
- node-version : [16.x]
13
+ node-version : [16.x, 18.x ]
14
14
fail-fast : false
15
15
steps :
16
16
- uses : actions/checkout@v2
17
-
18
17
- name : Use Node.js ${{ matrix.node-version }}
19
18
uses : actions/setup-node@v2
20
19
with :
21
20
node-version : ${{ matrix.node-version }}
22
21
- name : Install dependencies
23
- run : npm ci
22
+ run : npm install
24
23
- name : Run tests
25
24
run : npm run test
26
25
- name : Send coverage report to Codecov
@@ -29,10 +28,16 @@ jobs:
29
28
runs-on : ubuntu-latest
30
29
strategy :
31
30
matrix :
32
- node-version : [16.x]
31
+ node-version : [16.x, 18.x ]
33
32
fail-fast : false
34
33
steps :
35
34
- uses : actions/checkout@v2
35
+ - name : Use Node.js ${{ matrix.node-version }}
36
+ uses : actions/setup-node@v3
37
+ with :
38
+ node-version : ${{ matrix.node-version }}
39
+ - name : Install dependencies
40
+ run : npm install
36
41
- uses : NodeSecure/ci-action@v1
37
42
with :
38
43
warnings : warning
Original file line number Diff line number Diff line change
1
+ package-lock = false
You can’t perform that action at this time.
0 commit comments