From 3ef011986c1d11a344cebe86e19b24580072b916 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 23 Mar 2026 08:18:07 -0500 Subject: [PATCH] add i18n key check step to PR workflow --- .github/workflows/pull_request.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c4d8aa7a0..22bf4a496 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -27,6 +27,9 @@ jobs: - name: Lint run: npm run lint working-directory: ./web + - name: Check i18n keys + run: npm run i18n:extract:ci + working-directory: ./web web_test: name: Web - Test