Add i18n lint job

This commit is contained in:
Deluan Quintão 2024-08-31 14:54:04 -04:00 committed by GitHub
parent a6d72d8623
commit 68ddbf4856
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,10 +99,26 @@ jobs:
name: js-bundle
path: ui/build
retention-days: 7
i18n-lint:
name: Lint i18n files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
set -e
for file in resources/i18n/*.json; do
echo "Validating $file"
if ! jq empty "$file" 2>error.log; then
error_message=$(cat error.log)
line_number=$(echo "$error_message" | grep -oP 'line \K[0-9]+')
echo "::error file=$file,line=$line_number::$error_message"
exit 1
fi
done
binaries:
name: Build binaries
needs: [js, go, go-lint]
needs: [js, go, go-lint, i18n-lint]
runs-on: ubuntu-latest
container: deluan/ci-goreleaser:1.23.0-1
steps: