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