From 57871449ea39ff36946085b23bdfed0bb5d3d795 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 9 Feb 2017 18:10:27 +0100 Subject: [PATCH] Fixed missing yarn in Travis --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7600cf881..52e4fa40c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,12 +54,14 @@ cache: directories: - node_modules +# Install yarn, as Travis doesn't support it out of the box +before_install: npm install -g yarn + # Do not install optional dependencies by default install: yarn install --ignore-optional # Install dependencies -before_script: - - pip install --user -r requirements.txt +before_script: pip install --user -r requirements.txt # Perform build and tests script: yarn run build