Flaky test report #351
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Flaky test report | |
| on: | |
| schedule: | |
| # 10:00 UTC (Europe morning), Monday–Friday — Playwright test health report | |
| - cron: '0 10 * * 1-5' | |
| # 15:00 UTC (US morning), Monday–Friday — Playwright test health report | |
| - cron: '0 15 * * 1-5' | |
| workflow_dispatch: | |
| inputs: | |
| lookback_days: | |
| description: Number of days of main CI runs to scan | |
| type: string | |
| default: '1' | |
| permissions: | |
| contents: read | |
| actions: read | |
| jobs: | |
| playwright-test-health-report: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate Playwright test health report | |
| uses: MetaMask/github-tools/.github/actions/playwright-test-health-report@a4a179a9ad2d02f6acb3c781e1b22a38bbc8dbca | |
| with: | |
| repository: ${{ github.event.repository.name }} | |
| workflow-ids: ci.yml | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| slack-webhook: ${{ secrets.SLACK_WEBHOOK_PLAYWRIGHT_HEALTH_REPORT }} | |
| lookback-days: ${{ github.event_name == 'workflow_dispatch' && inputs.lookback_days || '1' }} | |
| top-n: '10' | |
| report-title: Playwright Test Health Report (Mobile Appium) | |
| test-source-prefix: tests/smoke-appium |