2015-05-21 14:52:37 +00:00
|
|
|
# appveyor file
|
|
|
|
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
|
|
|
|
init:
|
|
|
|
- git config --global core.autocrlf input
|
|
|
|
|
|
|
|
# what combinations to test
|
|
|
|
environment:
|
|
|
|
matrix:
|
2015-08-04 10:26:13 +00:00
|
|
|
#node.js
|
2015-05-21 14:52:37 +00:00
|
|
|
- nodejs_version: 0.10
|
|
|
|
- nodejs_version: 0.11
|
|
|
|
- nodejs_version: 0.12
|
2015-08-04 10:26:13 +00:00
|
|
|
#io.js
|
|
|
|
- nodejs_version: 2.5.0
|
2015-05-21 14:52:37 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
|
2015-07-02 18:28:19 +00:00
|
|
|
- npm -g install npm@2.12.1
|
2015-06-01 12:46:19 +00:00
|
|
|
- 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
|