From a78a2c90d446e6687948f15fb8835cdfd02d9e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Wed, 14 Nov 2018 17:43:53 +0100 Subject: [PATCH] install always latest yarn version --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a141d0bb..5dfbc425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,17 @@ language: node_js + node_js: - - "10" + - 10 + cache: yarn + before_install: - - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1 - - export PATH="$HOME/.yarn/bin:$PATH" + - curl -o- -L https://yarnpkg.com/install.sh | bash -s + - export PATH=$HOME/.yarn/bin:$PATH + install: - - yarn install --production=false + - yarn install + script: - yarn lint - yarn test