From fb2c4a50e23e057bb8865d026bef0acfa1805431 Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 11:25:18 +0100 Subject: [PATCH] added yarn cache --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index a347ba6..d0024f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,8 @@ jobs: - save_cache: name: save yarn package cache key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules unit-test: docker: - image: cimg/node:14.10.1 @@ -40,6 +42,8 @@ jobs: - save_cache: name: save yarn package cache key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules workflows: build_and_test: