mirror of
https://github.com/node-red/node-red
synced 2024-11-22 16:33:24 +00:00
77a913f858
Having removed the ui test dependencies out of package.json we can remove the 'allow failures' flag from the node 12 build. Given how close Node 12 is to being LTS, we really need to pay proper attention to it.
12 lines
338 B
YAML
12 lines
338 B
YAML
sudo: false
|
|
language: node_js
|
|
matrix:
|
|
include:
|
|
- node_js: "12"
|
|
- node_js: "10"
|
|
script:
|
|
- ./node_modules/.bin/grunt && 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"
|