Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #184 from FormidableLabs/appveyor-integration
Browse files Browse the repository at this point in the history
Add appveyor config
  • Loading branch information
ianobermiller committed May 28, 2015
2 parents 3bbecd6 + d63bee1 commit 8a7a821
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: "0.10"

# 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 test

# Don't actually build.
build: off

0 comments on commit 8a7a821

Please sign in to comment.