From 1f27f90cbec7b50d07ee6588e16014f093931804 Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Tue, 9 Oct 2018 08:40:54 +0200 Subject: [PATCH] Try to remove circleci cache to see if that solves the build issue --- .circleci/config.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a92b58da30a..aeca0ea7bbf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -100,16 +100,19 @@ jobs: - image: circleci/node:8.12 steps: - checkout - - restore_cache: - key: dependency-cache-{{ checksum "yarn.lock" }} + # - restore_cache: + # key: dependency-cache-{{ checksum "yarn.lock" }} + - run: + name: node version + command: 'node --version' - 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'