kab
Version:
Know About Better - test your code
27 lines (20 loc) • 526 B
YAML
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
# What combinations to test
environment:
matrix:
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6.0.0
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
build: off
test_script:
- npm test
matrix:
fast_finish: true # set this flag to immediately finish build once one of the jobs fails.