From 472353c2faed5846d60877d4c59afca00bdb51de Mon Sep 17 00:00:00 2001 From: Craig Kochis Date: Sat, 22 Jul 2023 21:26:24 -0400 Subject: [PATCH] remove docker caching --- .circleci/config.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0afbfbb1..a988c3f0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,15 +5,9 @@ jobs: - image: cimg/node:16.15 steps: - checkout - - restore_cache: - key: dependency-cache-{{ checksum "package.json" }} - run: name: Install Dependencies command: npm ci - - save_cache: - key: dependency-cache-{{ checksum "package.json" }} - paths: - - node_modules - run: name: Run Tests command: npm run test