mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
e8a637498d
* 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>
13 lines
389 B
YAML
13 lines
389 B
YAML
sudo: false
|
|
language: node_js
|
|
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"
|