UNPKG

521 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4init:
5 - git config --global core.autocrlf input
6
7# what combinations to test
8environment:
9 matrix:
10 - nodejs_version: 0.10
11 - nodejs_version: 0.11
12
13# combinations having this can fail
14matrix:
15 allow_failures:
16 - nodejs_version: 0.11
17
18install:
19 - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
20 - npm install
21
22build: off
23
24test_script:
25 - node --version
26 - npm --version
27 - cmd: npm test