mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-10 00:36:13 +01:00

[TASK] Add xliff lint (#61)

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
Łukasz Uznański 2020-07-08 16:53:12 +02:00 committed by GitHub
parent f34cfb701b
commit da2be7411a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2236 additions and 0 deletions

2223
.github/build/xliff-core-1.2-strict.xsd vendored Normal file

File diff suppressed because it is too large Load diff

View file

@ -54,6 +54,19 @@ jobs:
- "php:sniff"
php-version:
- 7.3
xliff-lint:
name: "Xliff linter"
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: "Install xmllint"
run: "sudo apt-get install libxml2-utils"
-
name: "Run lint"
run: "xmllint --schema .github/build/xliff-core-1.2-strict.xsd --noout $(find Resources -name '*.xlf')"
unit-tests:
name: "Unit tests"
runs-on: ubuntu-latest