about summary refs log tree commit diff
path: root/.github/workflows/check-i18n.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check-i18n.yml')
-rw-r--r--.github/workflows/check-i18n.yml63
1 files changed, 0 insertions, 63 deletions
diff --git a/.github/workflows/check-i18n.yml b/.github/workflows/check-i18n.yml
deleted file mode 100644
index df0d75c9f..000000000
--- a/.github/workflows/check-i18n.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-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: 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: |
-          yarn build:development
-          yarn manage:translations
-          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