From 6bb3c2b0d6d20614f300d94e9a26603b7032bc9c Mon Sep 17 00:00:00 2001 From: Jan Potoms <2109932+Janpot@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:36:44 +0100 Subject: [PATCH] Fix dedupe check (#3330) --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 70cf466c70a..d39b2a64e2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -90,7 +90,8 @@ jobs: - run: name: Check for duplicated packages command: | - if [[ $(git diff --name-status master | grep pnpm.lock) == "" ]]; + # #default-branch-switch + if [[ $(git diff --name-status master | grep -E 'pnpm-workspace\.yaml|pnpm-lock.yaml|package\.json') == "" ]]; then echo "no changes to dependencies detected, skipping..." else