UNPKG

309 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4environment:
5 matrix:
6 - nodejs_version: "4"
7 - nodejs_version: "6"
8 - nodejs_version: "8"
9
10install:
11 - ps: Install-Product node $env:nodejs_version
12 - npm install
13
14build: off
15
16test_script:
17 - node --version
18 - npm --version
19 - npm test