1 | branches:
|
2 | only:
|
3 | - develop
|
4 | environment:
|
5 | matrix:
|
6 | - nodejs_version: '6'
|
7 | install:
|
8 | - ps: Install-Product node $env:nodejs_version
|
9 | - set CI=true
|
10 | - npm install
|
11 | matrix:
|
12 | fast_finish: true
|
13 | build: off
|
14 | shallow_clone: true
|
15 | test_script:
|
16 | - node --version
|
17 | - npm --version
|
18 | - npm run test
|