Much faster installation which is very important for CI. We'll see if it proves difficult for deps management.
16 lines
280 B
YAML
16 lines
280 B
YAML
language: node_js
|
|
node_js:
|
|
- stable
|
|
- 6
|
|
|
|
# Use containers.
|
|
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
|
sudo: false
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
|
|
cache:
|
|
yarn: true
|