Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: drop node 8, adopt node 12 #3430

Merged
merged 1 commit into from Feb 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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