Skip to content

Commit

Permalink
Fix dedupe check
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot committed Mar 26, 2024
1 parent 82bb3e5 commit eaad9f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eaad9f3

Please sign in to comment.