tweak closed account page #25
This file contains 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: Lint translations | |
on: | |
push: | |
paths: | |
- '.github/workflows/translations.yml' | |
- 'translation/**' | |
- 'bin/trans-lint' | |
pull_request: | |
paths: | |
- '.github/workflows/translations.yml' | |
- 'translation/**' | |
- 'bin/trans-lint' | |
jobs: | |
translations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install xmllint | |
run: sudo apt-get update && sudo apt-get install -y libxml2-utils | |
- name: Validate translation files | |
run: xmllint --noout --dtdvalid translation/resources.dtd translation/**/*.xml | |
- name: Lint translation files | |
run: ./bin/trans-lint translation/dest/*/*.xml |