From a1853d782db50d1b8e748632629e84a624e65efa Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Tue, 9 Oct 2018 09:23:52 +0200 Subject: [PATCH] Revert "Try to remove circleci cache to see if that solves the build issue" This reverts commit f19fc935918721a29fe149fec8abfb78866b262f. --- .circleci/config.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aeca0ea7bbf..a92b58da30a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -100,19 +100,16 @@ jobs: - image: circleci/node:8.12 steps: - checkout - # - restore_cache: - # key: dependency-cache-{{ checksum "yarn.lock" }} - - run: - name: node version - command: 'node --version' + - restore_cache: + key: dependency-cache-{{ checksum "yarn.lock" }} - run: name: yarn install command: 'yarn install --pure-lockfile --no-progress' no_output_timeout: 15m - # - save_cache: - # key: dependency-cache-{{ checksum "yarn.lock" }} - # paths: - # - node_modules + - save_cache: + key: dependency-cache-{{ checksum "yarn.lock" }} + paths: + - node_modules - run: name: frontend tests command: './scripts/circle-test-frontend.sh'