From a33707cc7655fee60fb12da1aabfc7db6cfb914c Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Fri, 5 Sep 2025 13:57:11 +1000 Subject: [PATCH] Revert "ci: add translation string check to frontend checks" This reverts commit 98945a456038d16bd0a58fba5d826ca375802ada. --- .github/workflows/frontend-checks.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/frontend-checks.yml b/.github/workflows/frontend-checks.yml index a80302f6f8..43bbfdec0a 100644 --- a/.github/workflows/frontend-checks.yml +++ b/.github/workflows/frontend-checks.yml @@ -83,20 +83,3 @@ jobs: if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || inputs.always_run == true }} run: 'pnpm lint:knip' shell: bash - - - name: translations - if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || inputs.always_run == true }} - run: | - echo "Checking for unused translations..." - if ! pnpm translations:check; then - echo "" - echo "❌ Translation file contains unused keys!" - echo "" - echo "To fix this, run:" - echo " pnpm translations:clean" - echo " pnpm fix" - echo "" - echo "Then commit the changes." - exit 1 - fi - shell: bash