From 4c53af160e6a6d9d50eb63494091f88f92137616 Mon Sep 17 00:00:00 2001 From: HenriBoulnois <72384047+HenriBoulnois@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:26:10 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 63fa42b..d8d318d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,9 @@ jobs: - restore_cache: keys: - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - checkout - - run: - name: "Testing" - command: yarn install \ No newline at end of file + - npm-v1-dependencies + - run: yarn install --path "install" + - save_cache: + paths: + - "install" + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file