mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
24 lines
494 B
YAML
24 lines
494 B
YAML
sudo: false
|
|
language: node_js
|
|
env:
|
|
- CXX="g++-4.8"
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
- gcc-4.8
|
|
matrix:
|
|
allow_failures:
|
|
- node_js: "7"
|
|
node_js:
|
|
- "7"
|
|
- "6"
|
|
- "4"
|
|
script:
|
|
- istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage
|
|
before_script:
|
|
- npm install -g istanbul
|
|
- npm install coveralls
|