Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
Add Appveyor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfagnani committed May 25, 2016
1 parent deffc4e commit 790d85a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Test against this version of Node.js
environment:
nodejs_version: "4.4.4"

# 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
# install modules
- npm install

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

# Don't actually build.
build: off

0 comments on commit 790d85a

Please sign in to comment.