Travis - Allow failures in Node 6 (#4690)

master
Lucas Duailibe 2018-06-14 09:55:31 -03:00 committed by GitHub
parent f6890bd071
commit 4a16319470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@ language: node_js
node_js:
- node
- "8"
- "6"
cache:
@ -21,6 +22,11 @@ matrix:
include:
- node_js: "node"
env: JOB=lint
# Our test fail with a segfault in node 6
# (see https://github.com/prettier/prettier/issues/3457)
# To prevent making our Travis run useless, mark Node 6 as allowed to fail.
allow_failures:
- node_js: "6"
install:
- yarn install