Skip to content

Commit 4d60f40

Browse files
m14tIvanGoncharov
authored andcommitted
Update TravisCi to run full CI suite on Node 12 (#2279)
Update TravisCi to run the full `test:ci` commands on Node 12, which was promoted to LTS on 2019-10-21 ([source](https://nodejs.org/en/about/releases/)).
1 parent 61a07b1 commit 4d60f40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ node_js:
1010
- '8'
1111

1212
script: |
13-
if [[ "$(node -pe process.version)" == v10.* ]]; then # Is latest LTS?
13+
if [[ "$(node -pe process.version)" == v12.* ]]; then # Is latest LTS?
1414
npm run test:ci &&
1515
bash <(curl -s https://codecov.io/bash) -f coverage/tests/coverage-final.json
1616
else
@@ -23,7 +23,7 @@ jobs:
2323
if: type = push AND branch = master
2424
script: npm run gitpublish
2525
skip_cleanup: true
26-
node_js: '10'
26+
node_js: '12'
2727

2828
notifications:
2929
irc:

0 commit comments

Comments
 (0)