Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
useRollingCache: true
working-directory: .
install-command: npm ci --audit false
install-command: npm ci --audit false --legacy-peer-deps
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While adding --legacy-peer-deps might fix the immediate build issue, it's generally considered a workaround rather than a proper fix. This flag bypasses npm's peer dependency validation, which could mask underlying dependency conflicts.

Consider:

  1. Documenting why this flag is needed
  2. Creating a follow-up task to properly resolve the dependency conflicts
  3. Specifying which package(s) are causing the peer dependency issues


- name: Starting build check
shell: bash
Expand Down
Loading