about summary refs log tree commit diff
path: root/.github/workflows/check-i18n.yml
blob: aa8f1f5844593c5f36fc7431b277601946c9ee73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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@v3

      - name: Install system dependencies
        run: |
          sudo apt-get update
          sudo apt-get install -y libicu-dev libidn11-dev

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: .ruby-version
          bundler-cache: true

      - 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
        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