UNPKG

572 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4init:
5 - git config --global core.autocrlf input
6
7cache:
8 - C:\Users\appveyor\.node-gyp
9 - '%AppData%\npm-cache'
10
11# what combinations to test
12environment:
13 matrix:
14 - nodejs_version: 0.10
15 - nodejs_version: 0.11
16 - nodejs_version: 0.12
17
18install:
19 - ps: Install-Product node $env:nodejs_version x64
20 - npm -g install npm@2
21 - set PATH=%APPDATA%\npm;%PATH%
22 - npm install -g gulp
23 - npm install
24
25build: off
26
27test_script:
28 - node --version
29 - npm --version
30 - ps: gulp test
31 - cmd: gulp test