UNPKG

650 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4# build version format
5version: "{build}"
6
7# fix lineendings in Windows
8init:
9 - git config --global core.autocrlf input
10
11# what combinations to test
12environment:
13 matrix:
14 - nodejs_version: 0.10
15 - nodejs_version: 0.12
16 - nodejs_version: 1
17 - nodejs_version: 2
18 - nodejs_version: 3
19 - nodejs_version: 4
20
21# get the latest stable version of Node 0.STABLE.latest
22install:
23 - ps: Install-Product node $env:nodejs_version
24 - npm install
25
26build: off
27
28test_script:
29 - node --version
30 - npm --version
31 - ps: npm test --no-color # PowerShell
32 - cmd: npm test --no-color