diff --git a/.github/workflows/storybook-verification-playwright.yml b/.github/workflows/storybook-verification-playwright.yml index 25af61ef750..e8391259f55 100644 --- a/.github/workflows/storybook-verification-playwright.yml +++ b/.github/workflows/storybook-verification-playwright.yml @@ -20,8 +20,6 @@ jobs: verify-storybook: name: Verify Storybook (Playwright) runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/playwright:v1.52.0-noble permissions: contents: read @@ -40,5 +38,8 @@ jobs: - 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 diff --git a/packages/grafana-ui/src/components/Actions/ActionButton.tsx b/packages/grafana-ui/src/components/Actions/ActionButton.tsx index e680d027397..f9ee2c39a25 100644 --- a/packages/grafana-ui/src/components/Actions/ActionButton.tsx +++ b/packages/grafana-ui/src/components/Actions/ActionButton.tsx @@ -13,8 +13,6 @@ type ActionButtonProps = ButtonProps & { action: ActionModel; }; -// Test comment to trigger storybook verification tests in CI - /** * @internal */