UNPKG

506 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 - nodejs_version: 0.12
13
14install:
15 - ps: Install-Product node $env:nodejs_version x64
16 - npm -g install npm@2
17 - set PATH=%APPDATA%\npm;%PATH%
18 - npm install -g gulp
19 - npm install
20
21build: off
22
23test_script:
24 - node --version
25 - npm --version
26 - ps: gulp test
27 - cmd: gulp test