Skip to content

Commit

Permalink
Add appveyor and travis yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron committed Oct 20, 2016
1 parent 4d567f5 commit 4b8afd8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: node_js
sudo: false
git:
depth: 10
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
install:
- npm install

script:
- "npm test"
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "6"

install:
- ps: Install-Product node $env:nodejs_version
- npm install

build: off

test_script:
- node --version
- npm --version
- npm test

0 comments on commit 4b8afd8

Please sign in to comment.