diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2021-05-22 22:00:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 15:00:20 +0200 |
commit | 1db28332b5bd082afc5b6e501f60b975a92f812d (patch) | |
tree | 9cb8f153d2b3e9bcd56d765fa03681c0bfdfdac3 /.circleci | |
parent | 92a9fcf0e139f2e7c99feb0f6d7f2b71064a5592 (diff) |
Add Actions for check i18n (#16285)
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f3860d7c..42c058295 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -216,24 +216,6 @@ jobs: name: Run jest command: yarn test:jest - check-i18n: - <<: *defaults - steps: - - *attach_workspace - - *install_system_dependencies - - run: - name: Check locale file normalization - command: bundle exec i18n-tasks check-normalized - - run: - name: Check for unused strings - command: bundle exec i18n-tasks unused -l en - - run: - name: Check for wrong string interpolations - command: bundle exec i18n-tasks check-consistent-interpolations - - run: - name: Check that all required locale files exist - command: bundle exec rake repo:check_locales_files - workflows: version: 2 build-and-test: @@ -271,6 +253,3 @@ workflows: - test-webui: requires: - install - - check-i18n: - requires: - - install-ruby2.7 |