mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
add Node.js v10 to build matrix (#1708)
* add Node.js v10 to build matrix Signed-off-by: Christopher Hiller <boneskull@boneskull.com> * only compute coverage once We have to pick *which* version of Node.js to run coverage on, so I just picked the latest. Signed-off-by: Christopher Hiller <boneskull@boneskull.com>
This commit is contained in:
parent
e1195ac00a
commit
e8a637498d
18
.travis.yml
18
.travis.yml
@ -1,10 +1,12 @@
|
||||
sudo: false
|
||||
language: node_js
|
||||
node_js:
|
||||
- "8"
|
||||
- "6"
|
||||
- "4"
|
||||
script:
|
||||
- istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | $(npm get prefix)/bin/coveralls || true ) && rm -rf coverage
|
||||
before_script:
|
||||
- npm install -g istanbul coveralls
|
||||
matrix:
|
||||
include:
|
||||
- node_js: "10"
|
||||
script:
|
||||
- istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | $(npm get prefix)/bin/coveralls || true ) && rm -rf coverage
|
||||
before_script:
|
||||
- npm install -g istanbul coveralls
|
||||
- node_js: "8"
|
||||
- node_js: "6"
|
||||
- node_js: "4"
|
||||
|
Loading…
Reference in New Issue
Block a user