UNPKG

516 BYAMLView Raw
1version: "{build}"
2
3environment:
4 matrix:
5 - nodejs_version: "6"
6 - nodejs_version: "8"
7 - nodejs_version: "10"
8
9matrix:
10 fast_finish: true
11
12install:
13 # Install Node.js
14 - ps: Install-Product node $env:nodejs_version
15
16 # Output our current versions for debugging
17 - node --version
18 - npm --version
19
20 # Install our package dependencies
21 - appveyor-retry npm install
22
23 # Install our current directory as a dependency of itself
24 - npm run init:windows
25
26test_script:
27 - npm run appveyor
28
29build: off