2021-06-01 13:18:32 +10:00
|
|
|
name: Check i18n
|
2021-05-22 23:00:20 +10:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-03-21 14:46:11 +11:00
|
|
|
branches: [main]
|
2021-05-22 23:00:20 +10:00
|
|
|
pull_request:
|
2022-03-21 14:46:11 +11:00
|
|
|
branches: [main]
|
2021-05-22 23:00:20 +10:00
|
|
|
|
|
|
|
env:
|
|
|
|
RAILS_ENV: test
|
|
|
|
|
2022-09-08 17:44:24 +10:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-05-22 23:00:20 +10:00
|
|
|
jobs:
|
|
|
|
check-i18n:
|
2023-02-15 18:30:27 +11:00
|
|
|
runs-on: ubuntu-22.04
|
2021-05-22 23:00:20 +10:00
|
|
|
|
|
|
|
steps:
|
2023-09-11 18:41:26 +10:00
|
|
|
- uses: actions/checkout@v4
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Install system dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libicu-dev libidn11-dev
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2022-12-07 10:30:59 +11:00
|
|
|
ruby-version: .ruby-version
|
2022-03-21 14:46:11 +11:00
|
|
|
bundler-cache: true
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2023-04-06 00:33:55 +10:00
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: yarn
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Check for missing strings in English JSON
|
|
|
|
run: |
|
2023-06-01 07:43:39 +10:00
|
|
|
yarn i18n:extract --throws
|
2023-04-12 23:24:30 +10:00
|
|
|
git diff --exit-code
|
2023-04-06 00:33:55 +10:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Check locale file normalization
|
|
|
|
run: bundle exec i18n-tasks check-normalized
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Check for unused strings
|
2023-02-10 00:46:42 +11:00
|
|
|
run: bundle exec i18n-tasks unused
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2023-04-06 00:33:55 +10:00
|
|
|
- name: Check for missing strings in English YML
|
2023-02-18 22:46:44 +11:00
|
|
|
run: |
|
|
|
|
bundle exec i18n-tasks add-missing -l en
|
|
|
|
git diff --exit-code
|
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Check for wrong string interpolations
|
|
|
|
run: bundle exec i18n-tasks check-consistent-interpolations
|
2023-02-18 22:46:44 +11:00
|
|
|
|
2022-03-21 14:46:11 +11:00
|
|
|
- name: Check that all required locale files exist
|
|
|
|
run: bundle exec rake repo:check_locales_files
|