Skip to content

Commit

Permalink
Fix i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Jun 24, 2024
1 parent 9461cae commit 24f029e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,16 @@ jobs:
if: ${{ success() || failure() }}
run: make lint

- name: i18n sync
id: i18n
if: ${{ success() || failure() }}
run: make ci-i18n

- name: Unit Tests
id: unit
if: ${{ success() || failure() }}
run: make test

- name: i18n sync
id: i18n
if: ${{ success() || failure() }}
run: make ci-i18n

- name: Report
if: ${{ success() || failure() }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion frontend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ i18n: ## Sync i18n

.PHONY: ci-i18n
ci-i18n: ## Check if i18n is not synced
pnpm --filter $(ADDON_NAME) i18n && git diff -G'^[^\"POT]' --exit-code
pnpm --filter $(ADDON_NAME) i18n && git diff --exit-code -- packages '*.pot' '*.po'

.PHONY: format
format: ## Format codebase
Expand Down

0 comments on commit 24f029e

Please sign in to comment.