UNPKG

411 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4version: "{build}"
5
6environment:
7 matrix:
8 - nodejs_version: "4"
9 - nodejs_version: "5"
10 - nodejs_version: "6"
11 - nodejs_version: "7"
12
13install:
14 - ps: Install-Product node $env:nodejs_version
15 - npm install
16
17test_script:
18 # Output useful info for debugging.
19 - node --version
20 - npm --version
21 # run tests
22 - npm test
23
24build: off