Add CI to prevent i18n non-EN changes
This commit is contained in:
parent
2d7bada5c4
commit
a431363768
1 changed files with 19 additions and 1 deletions
20
.github/workflows/static_analysis.yaml
vendored
20
.github/workflows/static_analysis.yaml
vendored
|
@ -27,11 +27,29 @@ jobs:
|
|||
run: "yarn run lint:types"
|
||||
|
||||
i18n_lint:
|
||||
name: "i18n Diff Check"
|
||||
name: "i18n Check"
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
pull-requests: read
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: "Get modified files"
|
||||
id: changed_files
|
||||
if: github.event_name == "pull_request"
|
||||
uses: tj-actions/changed-files@v19
|
||||
with:
|
||||
files: |
|
||||
src/i18n/strings/*
|
||||
files_ignore: |
|
||||
src/i18n/strings/en_EN.json
|
||||
|
||||
- name: "Assert only en_EN was modified"
|
||||
if: github.event_name == "pull_request" && steps.changed_files.outputs.any_modified
|
||||
run: |
|
||||
echo "You can only modify en_EN.json, do not touch any of the other i18n files as Weblate will be confused"
|
||||
exit 1
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
cache: 'yarn'
|
||||
|
|
Loading…
Add table
Reference in a new issue