Skip to content

Commit

Permalink
Temporarily disable peer requirements strong check
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Oct 6, 2024
1 parent 943be6f commit 06752d2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
run: corepack enable

- name: Install Yarn Dependencies
run: |
unbuffer yarn install --immutable | tee yarn_output.log
if cat yarn_output.log | grep YN0060; then
echo "Detected incompatible peer dependencies!"
exit 1
fi
run: yarn install --immutable
# run: | Temporarily disabled until storybook updates eslint
# unbuffer yarn install --immutable | tee yarn_output.log
# if cat yarn_output.log | grep YN0060; then
# echo "Detected incompatible peer dependencies!"
# exit 1
# fi

- name: Compile
run: yarn build
Expand Down

0 comments on commit 06752d2

Please sign in to comment.