From aea2bb079ec07e2ce85db0766066c1c83bc8bb67 Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Sun, 24 Feb 2019 20:38:08 +0100 Subject: [PATCH] Force yarn on before_install --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f7724aaf2..fa4a53c7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,11 @@ node_js: cache: yarn: true directories: - - node_modules + - node_module + +before_install: + - curl -o- -L https://yarnpkg.com/install.sh | bash -s + - export PATH="$HOME/.yarn/bin:$PATH" install: - RUN yarn install --production=false --frozen-lockfile --non-interactive