1 | version: "{build}"
|
2 | environment:
|
3 | matrix:
|
4 | - nodejs_version: "6"
|
5 | - nodejs_version: "5"
|
6 | platform:
|
7 | - x86
|
8 | - x64
|
9 | install:
|
10 | - ps: Install-Product node $env:nodejs_version $env:platform
|
11 | - set CI=true
|
12 | - set AVA_APPVEYOR=true
|
13 | - npm install -g npm@latest || (timeout 30 && npm install -g npm@latest)
|
14 | - set PATH=%APPDATA%\npm;%PATH%
|
15 | - npm install || (timeout 30 && npm install)
|
16 | test_script:
|
17 |
|
18 | - node --version && npm --version
|
19 | - cmd: npm run test-ci
|
20 | build: off
|
21 | shallow_clone: true
|
22 | clone_depth: 1
|
23 | matrix:
|
24 | fast_finish: true
|
25 | cache:
|
26 | - node_modules -> package.json
|