Skip to content

Commit aed6d99

Browse files
authored
chore: support up to node v13 (shelljs#978)
No change to logic. This just adds Travis and appveyor test support for up to node v13. No change to the minimum supported version.
1 parent 9d0bdd6 commit aed6d99

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ node_js:
77
- 9
88
- 10
99
- 11
10+
- 12
11+
- 13
1012

1113
os:
1214
- 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: '13'
4+
- nodejs_version: '12'
35
- nodejs_version: '11'
46
- nodejs_version: '10'
57
- nodejs_version: '9'

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 = 11;
12+
var MAX_NODE_VERSION = 13;
1313

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

0 commit comments

Comments
 (0)