Skip to content

Commit

Permalink
ci: add .travis.yml & appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Oct 5, 2016
1 parent 38f65d5 commit d9e15be
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sudo: false
language: node_js
node_js:
- "4"
- "5"
- "6"

before_script:
- npm install npm@latest -g
- npm install

script:
- node --version
- npm --version
- npm run build
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
environment:
matrix:
- nodejs_version: '4'
- nodejs_version: '5'
- nodejs_version: '6'

install:
- ps: Install-Product node $env:nodejs_version
- npm install npm@latest -g
- npm install

test_script:
- node --version
- npm --version
- npm run build

build: off

version: "{build}"

0 comments on commit d9e15be

Please sign in to comment.