Skip to content

Commit

Permalink
CI: Remove Node.js 7 and add 8 and 10. (#1071)
Browse files Browse the repository at this point in the history
Also remove the obsolete `sudo: false` from Travis.
  • Loading branch information
XhmikosR authored and jakubpawlowicz committed Nov 12, 2019
1 parent d93e26b commit fce305b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,9 +1,9 @@
sudo: false
language: node_js
cache: npm
node_js:
- 4
- 6
- 7
- 8
- 10
matrix:
fast_finish: true
10 changes: 6 additions & 4 deletions appveyor.yml
@@ -1,4 +1,4 @@
# http://www.appveyor.com/docs/appveyor-yml
# https://www.appveyor.com/docs/appveyor-yml/

version: "{build}"

Expand All @@ -11,7 +11,8 @@ environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
- nodejs_version: 10

install:
- ps: Install-Product node $env:nodejs_version
Expand All @@ -20,11 +21,12 @@ install:
build: off

test_script:
- node --version && npm --version
- node --version
- npm --version
- npm test

matrix:
fast_finish: true

cache:
- node_modules -> package.json # local npm modules
- 'node_modules -> package.json' # local npm modules

0 comments on commit fce305b

Please sign in to comment.