balena-cli/appveyor.yml

32 lines
577 B
YAML
Raw Normal View History

2015-05-21 14:52:37 +00:00
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
2015-08-28 12:22:26 +00:00
cache:
- C:\Users\appveyor\.node-gyp
- '%AppData%\npm-cache'
2015-05-21 14:52:37 +00:00
# what combinations to test
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
install:
- ps: Install-Product node $env:nodejs_version x64
- npm -g install npm@2.12.1
- set PATH=%APPDATA%\npm;%PATH%
2015-05-21 14:52:37 +00:00
- npm install -g gulp
- npm install
build: off
test_script:
- node --version
- npm --version
- ps: gulp test
- cmd: gulp test