From f4b08e4c73611d557fd72e1a1171d7a2b2943852 Mon Sep 17 00:00:00 2001 From: aminovfariz Date: Mon, 8 Jun 2026 09:06:12 +0200 Subject: [PATCH] fix(ci): install ripgrep on runner before qa-required scripts CSS/docs/JS contract checks call rg directly on the host runner, not inside Docker, so ripgrep must be present on the ubuntu runner. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/qa-required.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/qa-required.yaml b/.github/workflows/qa-required.yaml index a0ff313..72c138d 100644 --- a/.github/workflows/qa-required.yaml +++ b/.github/workflows/qa-required.yaml @@ -32,5 +32,8 @@ jobs: - name: Run DB migrations run: docker compose exec -T php php bin/console db:migrate + - name: Install ripgrep + run: sudo apt-get install -y ripgrep + - name: Run required QA gates run: bin/qa-required.sh