mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-18 18:56:25 +00:00
40 lines
764 B
YAML
40 lines
764 B
YAML
# appveyor file
|
|
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
cache:
|
|
- C:\Users\appveyor\.node-gyp
|
|
- '%AppData%\npm-cache'
|
|
|
|
# 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%
|
|
- npm install -g gulp
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- ps: gulp test
|
|
- cmd: gulp test
|
|
|
|
notifications:
|
|
|
|
- provider: Webhook
|
|
url: https://webhooks.gitter.im/e/3d5ed28fa9ae4c25f46f
|
|
on_build_success: false
|
|
on_build_failure: true
|
|
on_build_status_changed: true
|