Skip to content

Commit a673aa8

Browse files
authoredFeb 27, 2020
ci: drop node 8, adopt node 12 (#3430)
BREAKING CHANGE: no more testing on node 8.
1 parent 9eb6436 commit a673aa8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 8
54
- 10
5+
- 12
66

77
env:
88
global:
@@ -13,7 +13,7 @@ matrix:
1313
fast_finish: true
1414
include:
1515
- name: "Lint code and commit message format"
16-
node_js: "8"
16+
node_js: "10"
1717
env: VALIDATE_COMMIT_MSG=true LINT=true
1818

1919
before_install:
@@ -47,7 +47,7 @@ script:
4747

4848
after_success:
4949
# run automated release process with semantic-release
50-
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_NODE_VERSION" == "10" ]]; then
50+
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_NODE_VERSION" == "12" ]]; then
5151
npm i --no-save semantic-release@15 @semantic-release/changelog@3 @semantic-release/git@7;
5252
semantic-release;
5353
fi;

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ version: "{build}"
22

33
environment:
44
matrix:
5-
- nodejs_version: "8"
65
- nodejs_version: "10"
6+
- nodejs_version: "12"
77

88
matrix:
99
fast_finish: true

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
"karma": "./bin/karma"
476476
},
477477
"engines": {
478-
"node": ">= 8"
478+
"node": ">= 10"
479479
},
480480
"version": "4.4.1",
481481
"license": "MIT",

0 commit comments

Comments
 (0)
Please sign in to comment.