Skip to content

Commit

Permalink
chore(ci): add v8 and v11 of Node version (#1652)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroppy authored and evilebottnawi committed Feb 6, 2019
1 parent 5833986 commit a52f2d7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .travis.yml
@@ -1,5 +1,9 @@
language: node_js

cache:
directories:
- node_modules

jobs:
fast_finish: true
include:
Expand All @@ -11,18 +15,22 @@ jobs:
env: SCRIPT=test
node_js: 'stable'
- <<: *linux
node_js: 'lts/*'
node_js: 11
- <<: *linux
node_js: 10
- <<: *linux
node_js: 8
- <<: *linux
node_js: 6
- &osx
stage: Test (MacOS)
os: 'osx'
env: SCRIPT=test
# Node 10 instead of 'stable' since Node 11 segfaults
# https://github.com/webpack/webpack-dev-server/pull/1588
node_js: 11
- <<: *osx
node_js: 10
- <<: *osx
node_js: 'lts/*'
node_js: 8
- <<: *osx
node_js: 6

Expand Down
5 changes: 5 additions & 0 deletions appveyor.yml
@@ -1,10 +1,15 @@
build: 'off'

cache:
- node_modules

init:
- git config --global core.autocrlf input

environment:
matrix:
- nodejs_version: '11'
webpack_version: latest
- nodejs_version: '10'
webpack_version: latest
- nodejs_version: '8'
Expand Down

0 comments on commit a52f2d7

Please sign in to comment.