Skip to content

Commit

Permalink
chore: test Node.js 6, 8 and 10 (#1160)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Node 6 from testing matrix, such that we'll gradually start drifting away from supporting Node 4.
  • Loading branch information
DanielRuf authored and bcoe committed Jun 26, 2018
1 parent 37b07e7 commit 84f9d2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -7,6 +7,6 @@ os:
after_success: npm run coverage

node_js:
- "4"
- "6"
- "node"
- "8"
- "10"
6 changes: 3 additions & 3 deletions appveyor.yml
Expand Up @@ -3,16 +3,16 @@
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "7"
- nodejs_version: "8"
- nodejs_version: "10"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Install-Product node $env:nodejs_version
# Typical npm stuff.
- npm i npm@5
- npm i -g npm@latest
- npm install

# Post-install test scripts.
Expand Down

0 comments on commit 84f9d2b

Please sign in to comment.