Chore: Remove old storybook-verification cypress test (#108696)

* add check for frontend code changing

* remove cache

* add to pr-e2e-tests instead

* fix CODEOWNERS

* remove cypress test
This commit is contained in:
Ashley Harrison
2025-07-28 17:25:02 +01:00
committed by GitHub
parent b32a6b0088
commit 672e6d08bf
5 changed files with 29 additions and 115 deletions
+29
View File
@@ -196,6 +196,34 @@ jobs:
path: videos
retention-days: 1
run-storybook-test:
name: Verify Storybook (Playwright)
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.changed == 'true'
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --immutable
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Run Storybook and E2E tests
run: yarn e2e:playwright:storybook
run-playwright-tests:
needs:
- build-grafana
@@ -232,6 +260,7 @@ jobs:
required-playwright-tests:
needs:
- run-playwright-tests
- run-storybook-test
- build-grafana
if: ${{ !cancelled() }}
name: All Playwright tests complete