Skip to content

Commit

Permalink
ci: update node versions
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for node v14 and v12
  • Loading branch information
evansiroky committed Jan 4, 2024
1 parent 4b0ba5e commit 9e266d8
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ sudo: false
language: node_js

node_js:
- "21"
- "20"
- "19"
- "18"
- "17"
- "16"
- "14"
- "12"

env:
- COVERAGE=false

matrix:
fast_finish: true
include:
- node_js: "16"
- node_js: "20"
env: COVERAGE=true
script:
- "npm run cover"
Expand All @@ -23,17 +25,11 @@ matrix:
- npm run build
- npm run semantic-release
allow_failures:
- node_js: "16"
- node_js: "20"
env: COVERAGE=true
script:
- "npm run cover"
- bash <(curl -s https://codecov.io/bash)
- node_js: "12"
env: COVERAGE=false
script:
- npm run lint
- npm t
- npm run build

script:
- npm run lint
Expand Down

0 comments on commit 9e266d8

Please sign in to comment.