attempt to fix AppVeyor config file

This commit is contained in:
Jeff Williams 2014-12-03 09:53:13 -08:00
parent e8a35e686e
commit 78ed79c49a

View File

@ -1,26 +1,26 @@
# http://www.appveyor.com/docs/appveyor-yml # http://www.appveyor.com/docs/appveyor-yml
# we're just running test scripts, not compiling anything
build: off
version: "{build}"
environment: environment:
matrix: matrix:
- nodejs: "0.10" - nodejs_version: "0.10"
- nodejs: "0.11" - nodejs_version: "0.11"
install: install:
# prerequisites # prerequisites
- ps: Install-Product node $env:nodejs - ps: Install-Product node $env:nodejs_version
# module dependencies # module dependencies
- npm install - npm install
- npm install -g gulp - npm install -g gulp
test_script: test_script:
# useful debugging info # log some useful debugging info
- node --version - node --version
- npm --version - npm --version
- node jsdoc.js --version - node jsdoc.js --version
# run tests
- cmd: npm test - cmd: npm test
# we're just running test scripts, not compiling anything
build: off
version: "{build}"