From be4e44f99a2f3ba1d1cabc7a1575bf5b68049d81 Mon Sep 17 00:00:00 2001 From: Jaewook Ahn Date: Sat, 7 May 2022 15:49:00 +0900 Subject: [PATCH] Fix ci script dependency installation - add --frozen-lockfile flag --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59b42a6..5bfbaea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: - checkout - restore_cache: key: dependency-cache-{{ checksum "yarn.lock" }} - - run: yarn install + - run: yarn install --frozen-lockfile - save_cache: key: dependency-cache-{{ checksum "yarn.lock" }} paths: