Skip to content

Commit

Permalink
Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
yargalot committed Nov 6, 2016
1 parent 89161c7 commit 46e4cbf
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 @@
clone_depth: 10

# Test against this version of Node.js
environment:
matrix:
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "6"
platform: x86


# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install

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

# Don't actually build.
build: off

matrix:
fast_finish: true

cache:
- node_modules -> package.json

0 comments on commit 46e4cbf

Please sign in to comment.