I18n: Fix and reenable verify-i18n CI check (#87496)

* I18n: Change verify-i18n script to use node_deb image with make in it

* remove swagger from i18n make

* make verify-i18n fail ci

* fix incorrect and unextracted nav translations

* fix more copy paste
This commit is contained in:
Josh Hunt
2024-05-08 14:01:17 +01:00
committed by GitHub
parent b383cafd35
commit c41ec46b29
6 changed files with 13 additions and 13 deletions

View File

@ -644,13 +644,11 @@ def verify_i18n_step():
uncommited_error_message = "\nTranslation extraction has not been committed. Please run 'make i18n-extract', commit the changes and push again."
return {
"name": "verify-i18n",
"image": images["node"],
"image": images["node_deb"],
"depends_on": [
"yarn-install",
],
"failure": "ignore",
"commands": [
"apk add --update git",
"make i18n-extract || (echo \"{}\" && false)".format(extract_error_message),
# Verify that translation extraction has been committed
'''