Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add new i18n validation workflows for the admin #9948

Merged
merged 26 commits into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/admin-i18n-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: i18n Validation

on:
pull_request:
paths:
- packages/admin/dashboard/src/i18n/translations/**


jobs:
i18n-validation-admin-dashboard:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'

- name: Install dependencies
working-directory: packages/admin/dashboard
run: yarn install

- name: Validate i18n translations
working-directory: packages/admin/dashboard
run: |
git diff --name-only --diff-filter=A origin/develop HEAD -- src/i18n/translations > i18n_added_files.txt

cat i18n_added_files.txt

while read -r file; do
# Get the base name of the file
filename=$(basename "$file")

# Skip those items
if [ "$filename" = "\$schema.json" ] || [ "$filename" = "index.ts" ] || [ -d "$file" ]; then
continue
fi

# Run validation on the file
yarn i18n:validate "$filename"
done < i18n_added_files.txt
Loading