Revert "ci: add translation string check to frontend checks"

This reverts commit 98945a4560.
This commit is contained in:
psychedelicious 2025-09-05 13:57:11 +10:00
parent 21e13daf6e
commit a33707cc76

View File

@ -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