1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Add node 11 to travis

This commit is contained in:
Nick O'Leary 2018-11-02 10:12:37 +00:00
parent 6a4e7201fe
commit 708fd32a31
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -2,9 +2,12 @@ sudo: false
language: node_js
matrix:
include:
- node_js: "11"
- node_js: "10"
- node_js: "8"
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"
allow_failures:
- node_js: "11"