Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 355287e

Browse files
authored
chore(node): add v10 and v11 to CI (#921)
This adds support for v10 and v11, and removes a TODO.
1 parent 5cab915 commit 355287e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ node_js:
55
- 7
66
- 8
77
- 9
8+
- 10
9+
- 11
810

911
os:
1012
- linux

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
environment:
22
matrix:
3+
- nodejs_version: '11'
4+
- nodejs_version: '10'
35
- nodejs_version: '9'
46
- nodejs_version: '8'
57
- nodejs_version: '7'

scripts/check-node-support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var shell = require('..');
99

1010
// This is the authoritative list of supported node versions.
1111
var MIN_NODE_VERSION = 6;
12-
var MAX_NODE_VERSION = 9;
12+
var MAX_NODE_VERSION = 11;
1313

1414
function checkReadme(minNodeVersion) {
1515
var start = '<!-- start minVersion -->';

src/exec-child.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ function isMaxBufferError(err) {
2828
// >= v10
2929
// RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length
3030
// exceeded
31-
// TODO(nfischer): remove when we add v10 CI (Github issue #856).
32-
/* istanbul ignore next */
3331
return true;
3432
}
3533
return false;

0 commit comments

Comments
 (0)