Skip to content

Only run when a particular label is set #1

Only run when a particular label is set

Only run when a particular label is set #1

Workflow file for this run

name: Mafs Visual Tests

Check failure on line 1 in .github/workflows/vrt.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/vrt.yml

Invalid workflow file

`labeled` is not a valid event name
on: [labeled]
jobs:
visual-tests:
runs-on: ubuntu-latest
timeout-minutes: 5
if: contains(github.event.pull_request.labels.*.name, 'visual-changes')
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
cache: "pnpm"
- run: pnpm install
- name: Install Playwright Browsers
run: pnpm playwright install --with-deps
- run: pnpm test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30