We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9610f34 commit 98945a4Copy full SHA for 98945a4
.github/workflows/frontend-checks.yml
@@ -83,3 +83,20 @@ jobs:
83
if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || inputs.always_run == true }}
84
run: 'pnpm lint:knip'
85
shell: bash
86
+
87
+ - name: translations
88
+ if: ${{ steps.changed-files.outputs.frontend_any_changed == 'true' || inputs.always_run == true }}
89
+ run: |
90
+ echo "Checking for unused translations..."
91
+ if ! pnpm translations:check; then
92
+ echo ""
93
+ echo "❌ Translation file contains unused keys!"
94
95
+ echo "To fix this, run:"
96
+ echo " pnpm translations:clean"
97
+ echo " pnpm fix"
98
99
+ echo "Then commit the changes."
100
+ exit 1
101
+ fi
102
+ shell: bash
0 commit comments