Skip to content

Commit d036e6f

Browse files
author
tunnckoCore
committed
fix(ci): update CI and add appveyor
1 parent 4d00b3c commit d036e6f

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ node_js:
1111
notifications:
1212
email: false
1313

14-
after_success: npm run report-coverage
14+
after_success: bash <(curl -s https://codecov.io/bash)

appveyor.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
environment:
2+
matrix:
3+
# node.js
4+
- nodejs_version: "7"
5+
- nodejs_version: "6"
6+
- nodejs_version: "4"
7+
- nodejs_version: "0.12"
8+
- nodejs_version: "0.10"
9+
10+
# Install scripts. (runs after repo cloning)
11+
install:
12+
# Get the latest stable version of Node.js or io.js
13+
- ps: Install-Product node $env:nodejs_version
14+
# install modules
15+
- npm install
16+
17+
# Post-install test scripts.
18+
test_script:
19+
# Output useful info for debugging.
20+
- node --version
21+
- npm --version
22+
# run tests
23+
- npm test
24+
25+
# Don't actually build.
26+
build: off

0 commit comments

Comments
 (0)