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