Browse Source

travis: Add yarn and nodejs caching (#2504)

Also cache node_module and yarn cache in Travis test process.
Improves speed for Travis tests.
closed-social-glitch-2
Koala Yeung 7 years ago
committed by Eugen Rochko
parent
commit
9d3fc1281d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      .travis.yml

+ 5
- 1
.travis.yml View File

@ -1,5 +1,9 @@
language: ruby
cache: bundler
cache:
bundler: true
yarn: true
directories:
- node_modules
dist: trusty
sudo: false

Loading…
Cancel
Save