Skip to content

Commit 537edd4

Browse files
committed
Increase versions of node on the test matrix
1 parent a27d894 commit 537edd4

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.travis.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@ scala:
1919
before_install:
2020
- export PATH=${PATH}:./vendor/bundle
2121

22+
env:
23+
- TRAVIS_NODE_VERSION="5.12.0"
24+
- TRAVIS_NODE_VERSION="6.10.0"
25+
- TRAVIS_NODE_VERSION="7.6.0"
26+
2227
install:
28+
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
29+
- npm install
2330
- rvm use 2.2.3 --install --fuzzy
2431
- gem update --system
2532
- gem install sass
@@ -30,15 +37,13 @@ cache:
3037
- $HOME/.ivy2
3138
- $HOME/.m2
3239
- $HOME/.coursier
33-
34-
env:
35-
- COURSIER_NO_TERM=1
40+
- $HOME/.sbt/boot
3641

3742
script:
3843
- sbt ++$TRAVIS_SCALA_VERSION clean scalajavatimeJVM/test
3944
- sbt ++$TRAVIS_SCALA_VERSION clean scalajavatimeJS/test
4045
- sbt docs/makeMicrosite
41-
#- sbt clean coverage test &&
42-
# sbt coverageAggregate
43-
after_success:
44-
#- sbt coveralls
46+
# Tricks to avoid unnecessary cache updates, from
47+
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
48+
- find $HOME/.sbt -name "*.lock" | xargs rm
49+
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm

0 commit comments

Comments
 (0)