1 | environment:
|
2 | matrix:
|
3 | - nodejs_version: Stable
|
4 | - nodejs_version: 8.0.0
|
5 | init: git config --global core.autocrlf true
|
6 | install:
|
7 | - ps: 'Install-Product node $env:nodejs_version'
|
8 | - npm install
|
9 | test_script:
|
10 | - node --version
|
11 | - npm --version
|
12 | - npm run test
|
13 | build: 'off'
|
14 | clone_depth: 1
|
15 | matrix:
|
16 | fast_finish: true
|