From a3392e82795ce52fb3809215fc36ac3ce11ed19a Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Tue, 27 Nov 2018 15:21:52 -0600 Subject: [PATCH] hotfix: remove yarn cache clean for CI --- .travis.yml | 1 - appveyor.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c7879a8a..63f1fc3ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,6 @@ before_install: cache: yarn: true install: - - yarn cache clean - yarn install - cd embark-ui && yarn install && cd .. - git status && test -z "$(git status --porcelain)" diff --git a/appveyor.yml b/appveyor.yml index 47e42c338..d6ed05391 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,7 +12,6 @@ install: - rm yarn-1.12.3.msi - node --version - yarn --version - - yarn cache clean - yarn install - cd embark-ui && yarn install && cd .. - git status && node -e "process.exit(require('child_process').execSync('git status --porcelain').toString().trim()===''?0:1)"