From 5298463f555171263faa62d50e8a88be5d38d2e3 Mon Sep 17 00:00:00 2001 From: hallouma875 Date: Sat, 27 Mar 2021 14:11:24 +0100 Subject: [PATCH] :construction_worker: change yarn install to npm install --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2fcf3f1..7b17ffc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ executors: node: docker: - - image: circleci/node:8.17.0 + - image: circleci/node:11.10.1 aliases: restore_cache: &restore_cache @@ -11,7 +11,7 @@ aliases: install_node_modules: &install_node_modules run: - command: yarn install + command: npm install save_cache: &save_cache save_cache: key: yarn-cache-netlify-{{ checksum "yarn.lock" }}