feat: add soundtrack gallery filter #694
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: I18N Localization Check | |
| on: | |
| pull_request: | |
| paths: | |
| - "frontend/src/locales/**/*.json" | |
| permissions: read-all | |
| jobs: | |
| check-translations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4.3.0 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v6.0.0 | |
| with: | |
| python-version: "3.13" | |
| - name: Run localization check | |
| run: python frontend/src/locales/check_i18n_locales.py | |
| - name: Check locale files are sorted | |
| run: python frontend/src/locales/check_i18n_sorted.py |