From 06752d29997c8079f4a5e822445137d9f68d0291 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 6 Oct 2024 09:03:27 -0400 Subject: [PATCH] Temporarily disable peer requirements strong check --- .github/workflows/CI.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0d298c61..8fc2ab49 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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