Skip to content

Commit

Permalink
Basic appveyor.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
octalmage committed Oct 24, 2015
1 parent 604b2a0 commit cfc1f78
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# http://www.appveyor.com/docs/appveyor-yml

# Test against these versions of Io.js and Node.js.
environment:
matrix:
# node.js
- nodejs_version: "0.8"
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "3"
- nodejs_version: "4"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version
- IF %nodejs_version% EQU 0.8 npm -g install npm@2
- IF %nodejs_version% EQU 0.8 set PATH=%APPDATA%\npm;%PATH%
- npm -g install npm
- IF %nodejs_version% NEQ 0.8 set PATH=%APPDATA%\npm;%PATH%
# Typical npm stuff.
- npm install

test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test

build: off

version: "{build}"

0 comments on commit cfc1f78

Please sign in to comment.