Compare commits

...

2 Commits

Author SHA1 Message Date
David Baker
7182b1129f Merge branch 'develop' into dbkr/remove_duplicate_step 2025-11-04 14:37:12 +00:00
David Baker
f11d90cfd3 Remove duplicate test step
As the comment indicated, this apparently was necessary to get stuff
built the first time, but does not appear to be necessary anymore and
looks to be causing occasional flakiness, so let's remove it.
2025-11-04 12:04:21 +00:00

View File

@@ -55,12 +55,6 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true' if: steps.playwright-cache.outputs.cache-hit != 'true'
run: "yarn playwright install --with-deps --only-shell" run: "yarn playwright install --with-deps --only-shell"
- name: Build storybook dependencies
# When the first test is ran, it will fail because the dependencies are not yet built.
# This step is to ensure that the dependencies are built before running the tests.
run: "yarn --cwd packages/shared-components test:storybook:ci"
continue-on-error: true
- name: Run Visual tests - name: Run Visual tests
run: "yarn --cwd packages/shared-components test:storybook:ci" run: "yarn --cwd packages/shared-components test:storybook:ci"