From 915ebc6b8e1573626b605c33b700e43b1bddc1d8 Mon Sep 17 00:00:00 2001 From: AdrianGonz97 <31664583+AdrianGonz97@users.noreply.github.com> Date: Sat, 28 Jun 2025 15:22:43 -0400 Subject: [PATCH 1/3] prefetch storybook cli during testing --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2044f9638..a728728b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,4 +53,6 @@ jobs: - run: pnpm install --frozen-lockfile - run: pnpm exec playwright install chromium - run: pnpm build + # prefetch the storybook cli to reduce fetching errors in tests + - run: pnpx storybook@latest - run: pnpm test From f57e52d08db0f74a0388bf035df7a9b672e6459f Mon Sep 17 00:00:00 2001 From: AdrianGonz97 <31664583+AdrianGonz97@users.noreply.github.com> Date: Sat, 28 Jun 2025 15:26:21 -0400 Subject: [PATCH 2/3] continue of error --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a728728b7..f4f565c80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,4 +55,5 @@ jobs: - run: pnpm build # prefetch the storybook cli to reduce fetching errors in tests - run: pnpx storybook@latest + continue-on-error: true - run: pnpm test From 1cd9e068c18304502c70be7fdefe98cd69600fae Mon Sep 17 00:00:00 2001 From: AdrianGonz97 <31664583+AdrianGonz97@users.noreply.github.com> Date: Sat, 28 Jun 2025 15:37:02 -0400 Subject: [PATCH 3/3] just print the version so it's not erroring --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4f565c80..75db6d39b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,5 @@ jobs: - run: pnpm exec playwright install chromium - run: pnpm build # prefetch the storybook cli to reduce fetching errors in tests - - run: pnpx storybook@latest - continue-on-error: true + - run: pnpx storybook@latest --version - run: pnpm test