From e54dcba38efaf0a33b820e96ab9ddecccd672539 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 16 Mar 2017 12:44:05 +0100 Subject: [PATCH] Switch back to npm temporarily for CI build --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 87b32afb8..4bd4293ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,22 +38,22 @@ git: # Cache dependencies cache: pip: true - yarn: true + # yarn: true directories: - node_modules # Install yarn as Travis doesn't support it out of the box -before_install: - - npm install -g yarn@v0.22.0 +# before_install: +# - npm install -g yarn@v0.22.0 # Install dependencies install: - - yarn install --ignore-optional + - npm install --no-optional - pip install --user -r requirements.txt # Perform build and tests script: - - yarn run build + - npm run build # ----------------------------------------------------------------------------- # Additional builds