chore(ci): check icons and i18n

This commit is contained in:
Edouard Vanbelle
2026-06-05 14:18:27 +02:00
parent 49f9a14ef0
commit 8b08b081c5
2 changed files with 31 additions and 2 deletions
+9 -2
View File
@@ -74,8 +74,8 @@ db-down:
front-dev:
PROFILE=dev cargo run
# front: check all (linter, format, type, ...)
front-check: front-fmt front-lint front-type front-rules
# front: check all (linter, format, type, icons, translations...)
front-check: front-fmt front-lint front-type front-rules front-check-icons front-check-i18n
front-fmt:
biome format static/
@@ -91,6 +91,13 @@ front-type:
front-rules:
stylelint static/css/
front-check-icons:
tools/check-icons.py --check-only
front-check-i18n:
tools/check-missing-translations.py --check-only
# end-to-end Playwright tests
front-test:
cd tests/e2e && npm test