Skip to content

Commit

Permalink
Adds CI config files
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethormandy committed Oct 20, 2015
1 parent b6c2655 commit e9a9a1d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sudo: false
language: node_js
node_js:
- "0.12"
- "4.0"
27 changes: 27 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: "{build}"
os: Windows Server 2012 R2

# Test against this version of Node.js
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4.0"

# 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 or deploy.
build: off
deploy: off

0 comments on commit e9a9a1d

Please sign in to comment.