Skip to content

Commit

Permalink
Drop support for Node.js 6
Browse files Browse the repository at this point in the history
See this for details: puppeteer/puppeteer#5045
  • Loading branch information
thomasdondorf committed Dec 5, 2019
1 parent 7cd81c4 commit 5a674eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -10,13 +10,13 @@ cache:
- node_modules

node_js:
- '6'
- '7'
- '8'
- '9'
- '10'
- '11'
#- '12' # Runs the coverage report (added below)
- '12'
#- '13' # Runs the coverage report (added below)

before_script: npm run build
script:
Expand All @@ -26,11 +26,11 @@ script:
jobs:
include:
- stage: test
node_js: '12'
node_js: '13'
env: 'SUBMIT_COVERAGE_REPORT=1' # Just for the Travis UI
after_success: 'cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js'
- stage: deploy
node_js: '12'
node_js: '13'
script: skip
deploy:
provider: npm
Expand Down

0 comments on commit 5a674eb

Please sign in to comment.