Skip to content

Commit c73e3de

Browse files
committed
f
1 parent d9e3091 commit c73e3de

2 files changed

Lines changed: 19 additions & 8 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,35 @@ on:
88
branches: [ master ]
99
pull_request:
1010
branches: [ master ]
11+
schedule:
12+
- cron: '0 2 * * *'
1113

1214
jobs:
1315
build:
14-
1516
runs-on: ${{ matrix.os }}
1617

1718
strategy:
19+
fail-fast: false
1820
matrix:
19-
node-version: [6.x, 8.x, 10.x, 12.x, 14.x]
21+
node-version: [8, 10, 12, 14]
2022
os: [ubuntu-latest, windows-latest, macos-latest]
2123

2224
steps:
23-
- uses: actions/checkout@v2
25+
- name: Checkout Git Source
26+
uses: actions/checkout@v2
27+
2428
- name: Use Node.js ${{ matrix.node-version }}
2529
uses: actions/setup-node@v1
2630
with:
2731
node-version: ${{ matrix.node-version }}
28-
- run: npm i -g npminstall && npminstall
29-
- run: npm run ci
30-
env:
31-
CI: true
32+
33+
- name: Install Dependencies
34+
run: npm i -g npminstall && npminstall
35+
36+
- name: Continuous Integration
37+
run: npm run ci
38+
39+
- name: Code Coverage
40+
uses: codecov/codecov-action@v1
41+
with:
42+
token: ${{ secrets.CODECOV_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"os": {
8484
"github": "linux, windows, macos"
8585
},
86-
"version": "6, 8, 10, 12, 14"
86+
"version": "8, 10, 12, 14"
8787
},
8888
"license": "MIT"
8989
}

0 commit comments

Comments
 (0)