Do not install yarn on Travis

Yarn is already installed on Travis and does not needed to added.
This commit is contained in:
Florent Cailhol 2018-01-08 17:06:03 +01:00
parent 37cc6f4f6e
commit efc17ff0fa
2 changed files with 3 additions and 13 deletions

View File

@ -32,7 +32,9 @@ matrix:
fast_finish: true
install:
- bash ./ci/travis-install.sh
- yarn --frozen-lockfile
- yarn link --frozen-lockfile || true
- yarn link webpack --frozen-lockfile
script: npm run travis:$JOB_PART

View File

@ -1,12 +0,0 @@
#!/bin/bash
set -ev
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.0.1
export PATH=$HOME/.yarn/bin:$PATH
yarn link --frozen-lockfile || true;
yarn --frozen-lockfile
yarn link webpack --frozen-lockfile