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