Merge upstream changes up to 9a3d047f3e604e581e18346424569e28fc9c5b96 #1762
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check i18n | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
RAILS_ENV: test | |
permissions: | |
contents: read | |
jobs: | |
check-i18n: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby environment | |
uses: ./.github/actions/setup-ruby | |
- name: Set up Javascript environment | |
uses: ./.github/actions/setup-javascript | |
- name: Check for missing strings in English JSON | |
run: | | |
yarn i18n:extract --throws | |
git diff --exit-code | |
- name: Check locale file normalization | |
run: bundle exec i18n-tasks check-normalized | |
- name: Check for unused strings | |
run: bundle exec i18n-tasks unused | |
- name: Check for missing strings in English YML | |
run: | | |
bundle exec i18n-tasks add-missing -l en | |
git diff --exit-code | |
- name: Check for wrong string interpolations | |
run: bundle exec i18n-tasks check-consistent-interpolations | |
- name: Check that all required locale files exist | |
run: bundle exec rake repo:check_locales_files |