about summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-05-27 18:59:48 +0200
committerGitHub <noreply@github.com>2021-05-27 18:59:48 +0200
commitbbc9ca5d38c342f3afa87835f86cdbe82a9affdb (patch)
tree193863c7b8bbd25c77ea6489134db3cb9397ed3f /.github/workflows
parent2024aef0f9b52297d814811f5825678a563f78ff (diff)
parent10a31a934fb62a95d6144794b9c449f1092593f0 (diff)
Merge pull request #1544 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/check-i18n.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/check-i18n.yml b/.github/workflows/check-i18n.yml
new file mode 100644
index 000000000..373484aee
--- /dev/null
+++ b/.github/workflows/check-i18n.yml
@@ -0,0 +1,34 @@
+name: Chack i18n
+
+on:
+  push:
+    branches: [ main ]
+  pull_request:
+    branches: [ main ]
+
+env:
+  RAILS_ENV: test
+
+jobs:
+  check-i18n:
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: Install system dependencies
+      run: |
+        sudo apt-get update
+        sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
+    - name: Set up Ruby
+      uses: ruby/setup-ruby@v1
+      with:
+        ruby-version: '2.7'
+        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 -l en
+    - 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