Skip to content

Commit

Permalink
Merge pull request #23 from jedwards1211/appveyor
Browse files Browse the repository at this point in the history
add appveyor.yml
  • Loading branch information
nelsonic committed Oct 27, 2016
2 parents 8f0a50e + 359492f commit 80f8545
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Test against this version of Node.js
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "5"
- nodejs_version: "6"

platform:
- x86
- x64

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version $env:platform
# install modules
- npm install

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

# Don't actually build.
build: off

0 comments on commit 80f8545

Please sign in to comment.