Skip to content

Instantly share code, notes, and snippets.

@c-geek
Created March 15, 2016 17:37
Show Gist options
  • Save c-geek/5132a479df1c80b514aa to your computer and use it in GitHub Desktop.
Save c-geek/5132a479df1c80b514aa to your computer and use it in GitHub Desktop.
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
# What combinations to test
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
platform:
- x86
- x64
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm install
test_script:
# Output useful info for debugging.
- node --version && npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test
build: off
matrix:
fast_finish: true
cache:
- node_modules -> package.json # local npm modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment