2021-06-01 05:18:32 +02:00
|
|
|
name: Check i18n
|
2021-05-22 22:00:20 +09:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-07-07 05:39:31 -04:00
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'stable-*'
|
2021-05-22 22:00:20 +09:00
|
|
|
pull_request:
|
2024-07-07 05:39:31 -04:00
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'stable-*'
|
2021-05-22 22:00:20 +09:00
|
|
|
|
|
|
|
env:
|
|
|
|
RAILS_ENV: test
|
|
|
|
|
2022-09-08 00:44:24 -07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-05-22 22:00:20 +09:00
|
|
|
jobs:
|
|
|
|
check-i18n:
|
2024-10-21 08:29:23 +00:00
|
|
|
runs-on: ubuntu-24.04
|
2021-05-22 22:00:20 +09:00
|
|
|
|
|
|
|
steps:
|
2023-09-11 10:41:26 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-02-18 06:46:44 -05:00
|
|
|
|
2023-10-24 13:43:24 +02:00
|
|
|
- name: Set up Ruby environment
|
|
|
|
uses: ./.github/actions/setup-ruby
|
|
|
|
|
|
|
|
- name: Set up Javascript environment
|
|
|
|
uses: ./.github/actions/setup-javascript
|
2023-04-05 10:33:55 -04:00
|
|
|
|
|
|
|
- name: Check for missing strings in English JSON
|
|
|
|
run: |
|
2023-05-31 23:43:39 +02:00
|
|
|
yarn i18n:extract --throws
|
2023-04-12 15:24:30 +02:00
|
|
|
git diff --exit-code
|
2023-04-05 10:33:55 -04:00
|
|
|
|
2022-03-21 12:46:11 +09:00
|
|
|
- name: Check locale file normalization
|
2024-11-25 11:49:24 -05:00
|
|
|
run: bin/i18n-tasks check-normalized
|
2023-02-18 06:46:44 -05:00
|
|
|
|
2022-03-21 12:46:11 +09:00
|
|
|
- name: Check for unused strings
|
2024-11-25 11:49:24 -05:00
|
|
|
run: bin/i18n-tasks unused
|
2023-02-18 06:46:44 -05:00
|
|
|
|
2023-04-05 10:33:55 -04:00
|
|
|
- name: Check for missing strings in English YML
|
2023-02-18 06:46:44 -05:00
|
|
|
run: |
|
2024-11-25 11:49:24 -05:00
|
|
|
bin/i18n-tasks add-missing -l en
|
2023-02-18 06:46:44 -05:00
|
|
|
git diff --exit-code
|
|
|
|
|
2022-03-21 12:46:11 +09:00
|
|
|
- name: Check for wrong string interpolations
|
2024-11-25 11:49:24 -05:00
|
|
|
run: bin/i18n-tasks check-consistent-interpolations
|
2023-02-18 06:46:44 -05:00
|
|
|
|
2022-03-21 12:46:11 +09:00
|
|
|
- name: Check that all required locale files exist
|
2024-11-25 11:49:24 -05:00
|
|
|
run: bin/rake repo:check_locales_files
|