diff options
author | Eric Bailey <git@esb.lol> | 2025-03-14 10:27:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-14 10:27:45 -0500 |
commit | dcc8b351464727e2780b279338dd46589424784e (patch) | |
tree | 796ffe935996bad5de6107225b3dec37c996ff0a /.github | |
parent | cb54c9833e9a6982cd9bcc6de730df751d63064b (diff) | |
download | voidsky-dcc8b351464727e2780b279338dd46589424784e.tar.zst |
Add checks for invalid syntax post-i18n builds (#7935)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-submit-android.yml | 5 | ||||
-rw-r--r-- | .github/workflows/build-submit-ios.yml | 5 | ||||
-rw-r--r-- | .github/workflows/bundle-deploy-eas-update.yml | 7 |
3 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index 650708efe..b10e65c7f 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -56,7 +56,10 @@ jobs: run: yarn install - name: 🔤 Compile translations - run: yarn intl:build + run: yarn intl:build 2>&1 | tee i18n.log + + - name: Check for i18n compilation errors + run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi - name: ✏️ Write environment variables run: | diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index 863f4b4dd..2b375ec07 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -69,7 +69,10 @@ jobs: key: ${{ runner.os }}-pods-${{ hashFiles('yarn.lock') }} - name: 🔤 Compile translations - run: yarn intl:build + run: yarn intl:build 2>&1 | tee i18n.log + + - name: Check for i18n compilation errors + run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi - name: ✏️ Write environment variables run: | diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index 95dfe1dd1..fb8dca6ac 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -75,8 +75,11 @@ jobs: - name: Prettier check run: yarn prettier --check . - - name: Check & compile i18n - run: yarn intl:build + - name: 🔤 Compile translations + run: yarn intl:build 2>&1 | tee i18n.log + + - name: Check for i18n compilation errors + run: if grep -q "invalid syntax" "i18n.log"; then echo "\n\nFound compilation errors!\n\n" && exit 1; else echo "\n\nNo compilation errors!\n\n"; fi - name: Type check run: yarn typecheck |