Skip to content

Commit 84f9d2b

Browse files
DanielRufbcoe
authored andcommitted
chore: test Node.js 6, 8 and 10 (#1160)
BREAKING CHANGE: drop Node 6 from testing matrix, such that we'll gradually start drifting away from supporting Node 4.
1 parent 37b07e7 commit 84f9d2b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ os:
77
after_success: npm run coverage
88

99
node_js:
10-
- "4"
1110
- "6"
12-
- "node"
11+
- "8"
12+
- "10"

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
# Test against these versions of Node.js.
44
environment:
55
matrix:
6-
- nodejs_version: "4"
76
- nodejs_version: "6"
8-
- nodejs_version: "7"
7+
- nodejs_version: "8"
8+
- nodejs_version: "10"
99

1010
# Install scripts. (runs after repo cloning)
1111
install:
1212
# Get the latest stable version of Node 0.STABLE.latest
1313
- ps: Install-Product node $env:nodejs_version
1414
# Typical npm stuff.
15-
- npm i npm@5
15+
- npm i -g npm@latest
1616
- npm install
1717

1818
# Post-install test scripts.

0 commit comments

Comments
 (0)