Skip to content

Fix advanced facet toggle not working in Search block. #820

Fix advanced facet toggle not working in Search block.

Fix advanced facet toggle not working in Search block. #820

Workflow file for this run

name: "Cypress check for .only in tests"
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
check-cypress-only:
name: "Verify no focused Cypress tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v6
- name: "Fail if Cypress tests contain .only"
run: |
set -euo pipefail
matches=$(rg --line-number --color=never --glob '*.cy.*' --glob '*.spec.*' --fixed-strings '.only' frontend/cypress/tests || true)
if [ -n "$matches" ]; then
echo "Found focused Cypress tests (.only) in frontend/cypress/tests:"
echo "$matches"
exit 1
fi