UNPKG

534 BYAMLView Raw
1# AppVeyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4# Build version format
5version: "{build}"
6
7# What combinations to test
8environment:
9 matrix:
10 - nodejs_version: 6
11 - nodejs_version: 7
12 - nodejs_version: 8
13 - nodejs_version: 9
14
15install:
16 # Get the latest stable version of Node.js
17 - ps: Install-Product node $env:nodejs_version
18 # install modules
19 - npm install
20
21build: off
22
23test_script:
24 - npm test
25
26matrix:
27 fast_finish: true # set this flag to immediately finish build once one of the jobs fails.