Skip to content

Commit

Permalink
chore(node): add v10 and v11 to CI (#921)
Browse files Browse the repository at this point in the history
This adds support for v10 and v11, and removes a TODO.
  • Loading branch information
nfischer committed Dec 3, 2018
1 parent 5cab915 commit 355287e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,8 @@ node_js:
- 7
- 8
- 9
- 10
- 11

os:
- linux
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
@@ -1,5 +1,7 @@
environment:
matrix:
- nodejs_version: '11'
- nodejs_version: '10'
- nodejs_version: '9'
- nodejs_version: '8'
- nodejs_version: '7'
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-node-support.js
Expand Up @@ -9,7 +9,7 @@ var shell = require('..');

// This is the authoritative list of supported node versions.
var MIN_NODE_VERSION = 6;
var MAX_NODE_VERSION = 9;
var MAX_NODE_VERSION = 11;

function checkReadme(minNodeVersion) {
var start = '<!-- start minVersion -->';
Expand Down
2 changes: 0 additions & 2 deletions src/exec-child.js
Expand Up @@ -28,8 +28,6 @@ function isMaxBufferError(err) {
// >= v10
// RangeError [ERR_CHILD_PROCESS_STDIO_MAXBUFFER]: stdout maxBuffer length
// exceeded
// TODO(nfischer): remove when we add v10 CI (Github issue #856).
/* istanbul ignore next */
return true;
}
return false;
Expand Down

0 comments on commit 355287e

Please sign in to comment.