Skip to content

Commit 77cf90f

Browse files
authored
Merge pull request #659 from phated/ci-updates
Update Travis & AppVeyor to allow node 0.10 failures
2 parents 51ca0d5 + d2d8132 commit 77cf90f

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
language: node_js
22
node_js:
3+
- '9'
34
- '8'
45
- '7'
56
- '6'
67
- '5'
78
- '4'
9+
- '0.12'
810
- '0.10'
911
os:
1012
- linux
1113
- osx
1214
script:
1315
- npm run ci-test
16+
after_script:
17+
- npm run coveralls
1418
sudo: false

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Test against this version of Node.js
22
environment:
33
matrix:
4+
- nodejs_version: "9"
45
- nodejs_version: "8"
56
- nodejs_version: "7"
67
- nodejs_version: "6"
@@ -9,6 +10,10 @@ environment:
910
- nodejs_version: "0.12"
1011
- nodejs_version: "0.10"
1112

13+
matrix:
14+
allow_failures:
15+
- nodejs_version: "0.10"
16+
1217
# Install scripts. (runs after repo cloning)
1318
install:
1419
# Get the latest stable version of Node.js or io.js

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"license": "MIT",
2424
"scripts": {
2525
"test": "istanbul test node_modules/mocha/bin/_mocha",
26-
"ci-test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"
26+
"ci-test": "istanbul cover _mocha",
27+
"coveralls": "cat ./coverage/lcov.info | coveralls"
2728
},
2829
"files": [
2930
"index.js",

0 commit comments

Comments
 (0)