Skip to content

Commit

Permalink
fix(ci): update CI and add appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed Mar 16, 2017
1 parent 4d00b3c commit d036e6f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ node_js:
notifications:
email: false

after_success: npm run report-coverage
after_success: bash <(curl -s https://codecov.io/bash)
26 changes: 26 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
environment:
matrix:
# node.js
- nodejs_version: "7"
- nodejs_version: "6"
- nodejs_version: "4"
- nodejs_version: "0.12"
- 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 d036e6f

Please sign in to comment.