Prechádzať zdrojové kódy

Revert "Try to remove circleci cache to see if that solves the build issue"

This reverts commit f19fc935918721a29fe149fec8abfb78866b262f.
Johannes Schill 7 rokov pred
rodič
commit
a1853d782d
1 zmenil súbory, kde vykonal 6 pridanie a 9 odobranie
  1. 6 9
      .circleci/config.yml

+ 6 - 9
.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'