appveyor.yml
environment:
matrix:
- nodejs_version: "5.10"
- nodejs_version: "7.6"
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs_version
- if exist node_modules npm prune
- if exist node_modules npm rebuild
- npm install
build: off
test_script:
- node --version
- npm --version
- npm test
version: "{build}"
# branches to build
branches:
# whitelist
only:
- master
- production
# blacklist
except:
- gh-pages