Add node10 to travis but allow fail for now

This commit is contained in:
Dave Conway-Jones 2018-08-15 13:22:24 +01:00
parent 88574c71c9
commit 4c555db31e
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
sudo: false
language: node_js
node_js:
- "8"
- "6"
- "8"
- "10"
matrix:
allow_failures:
- node_js: 10
before_script:
# Remove the './node_modules/.bin:' entry, see https://github.com/travis-ci/travis-ci/issues/8813
- export PATH=`echo ${PATH} | sed -re 's,(^|:)(./)?node_modules/.bin($|:),\1,'`