From b26c852c3c2a7c938ee0b4a4f09f41c55d3adf8b Mon Sep 17 00:00:00 2001 From: sapics Date: Sat, 29 Sep 2018 09:15:55 +0900 Subject: [PATCH] Fix:travis replace test version of node v6 to v6.12, because v6.13 and v6.14 cause unreasonable error in SymbolDefinition.initialize --- .travis.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c2647c5..1f4faa9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,13 @@ language: node_js # Follow https://github.com/nodejs/LTS to decide when to remove a version node_js: - stable -- '8' -- '6' -- '4' +- 8 +# 6.13 and 6.14 causing unreasonable errors in SymbolDefinition.initialize. +# https://travis-ci.org/paperjs/paper.js/jobs/434854796 +# To avoid these versions, we specify version to 6.12 as temporary solution. +# See https://github.com/paperjs/paper.js/issues/1523 +- 6.12 +- 4 sudo: false env: matrix: