From a683fa6b8aeecbbc15d97558103ddf97a28a36d1 Mon Sep 17 00:00:00 2001 From: Julien Dudek Date: Mon, 2 Nov 2020 10:20:03 +0100 Subject: [PATCH] fix --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f3a9e72..334d864 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: cimg/node:14.10.1 # the primary container, where your job's commands are run + - image: "circleci/node:12" # the primary container, where your job's commands are run steps: - checkout # check out the code in the project directory - restore_cache: @@ -11,4 +11,4 @@ jobs: - save_cache: key: yarn-packages-{{ checksum "yarn.lock" }} paths: - - ~/.cache/yarn + - ~/.node_modules