mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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
|
# Follow https://github.com/nodejs/LTS to decide when to remove a version
|
||||||
node_js:
|
node_js:
|
||||||
- stable
|
- stable
|
||||||
- '8'
|
- 8
|
||||||
- '6'
|
# 6.13 and 6.14 causing unreasonable errors in SymbolDefinition.initialize.
|
||||||
- '4'
|
# 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
|
sudo: false
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Reference in a new issue