Skip to content

Commit

Permalink
Build: Add AppVeyor for Windows testing
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Sep 6, 2016
1 parent 9ae7cd1 commit c97e6e7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# http://www.appveyor.com/docs/appveyor-yml
# http://www.appveyor.com/docs/lang/nodejs-iojs

environment:
matrix:
# node.js
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"

install:
- ps: Install-Product node $env:nodejs_version
- npm install

test_script:
- node --version
- npm --version
- cmd: npm test

build: off

# build version format
version: "{build}"

0 comments on commit c97e6e7

Please sign in to comment.