chore: get rid of "resname" attribute in XLF file #13
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: XLIFF | |
on: | |
push: | |
branches-ignore: | |
- l10n_main | |
paths: | |
- '**.xlf' | |
pull_request: | |
branches-ignore: | |
- l10n_main | |
paths: | |
- '**.xlf' | |
jobs: | |
xliff-validation: | |
name: XLIFF validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install package | |
run: | | |
sudo apt-get -y install libxml2-utils | |
- name: Validate XLIFF files | |
run: | | |
make xlf-lint |