mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-29 09:22:22 -05:00
Fix:travis replace test version of node v6 to v6.12, because v6.13 and v6.14 cause unreasonable error in SymbolDefinition.initialize
This commit is contained in:
parent
1331554862
commit
b26c852c3c
1 changed files with 7 additions and 3 deletions
10
.travis.yml
10
.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:
|
||||
|
|
Loading…
Reference in a new issue