1 | environment:
|
2 | matrix:
|
3 | - nodejs_version: '14'
|
4 | - nodejs_version: '12'
|
5 | - nodejs_version: '10'
|
6 |
|
7 | max_jobs: 4
|
8 |
|
9 | clone_depth: 50
|
10 |
|
11 | init:
|
12 | - git config --global core.autocrlf true
|
13 |
|
14 | install:
|
15 | - ps: Install-Product node $env:nodejs_version x64
|
16 | - npm install
|
17 |
|
18 | test_script:
|
19 | - cmd: SET PATH=C:\MinGW\bin;%PATH%
|
20 | - npm run test
|
21 |
|
22 | after_test:
|
23 | - node .\bin\codecov -f coverage\*.json
|
24 |
|
25 | build: off
|
26 |
|
27 | deploy: off
|