Skip to content

Commit

Permalink
ci: drop node 8, adopt node 12 (#3430)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: no more testing on node 8.
  • Loading branch information
johnjbarton committed Feb 27, 2020
1 parent 9eb6436 commit a673aa8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
@@ -1,8 +1,8 @@
sudo: false
language: node_js
node_js:
- 8
- 10
- 12

env:
global:
Expand All @@ -13,7 +13,7 @@ matrix:
fast_finish: true
include:
- name: "Lint code and commit message format"
node_js: "8"
node_js: "10"
env: VALIDATE_COMMIT_MSG=true LINT=true

before_install:
Expand Down Expand Up @@ -47,7 +47,7 @@ script:

after_success:
# run automated release process with semantic-release
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_NODE_VERSION" == "10" ]]; then
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_NODE_VERSION" == "12" ]]; then
npm i --no-save semantic-release@15 @semantic-release/changelog@3 @semantic-release/git@7;
semantic-release;
fi;
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -2,8 +2,8 @@ version: "{build}"

environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "12"

matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -475,7 +475,7 @@
"karma": "./bin/karma"
},
"engines": {
"node": ">= 8"
"node": ">= 10"
},
"version": "4.4.1",
"license": "MIT",
Expand Down

0 comments on commit a673aa8

Please sign in to comment.