Skip to content

Commit

Permalink
fix(workflows): use legacy-peer-deps flag for npm install
Browse files Browse the repository at this point in the history
Update npm install command in the workflow to use --legacy-peer-deps flag while awaiting resolution of eslint flat config breaking peer dependencies issue. This change ensures successful package installation without violating peer dependency constraints.
  • Loading branch information
2ajoyce committed Apr 20, 2024
1 parent 720daf3 commit da2ea4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3

- name: Install Dependancies
run: npm install --force # Remove this flag once eslint flat config is no longer breaking peer dependencies
run: npm install --legacy-peer-deps # Remove this flag once eslint flat config is no longer breaking peer dependencies

- name: Build Application
run: npm run build
Expand Down

0 comments on commit da2ea4a

Please sign in to comment.