diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-14 00:58:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-13 16:58:42 -0500 |
commit | 36b2a87a063af8d265fa787b408ba38761bc4276 (patch) | |
tree | 3dadfed7f6a256d5e78a080ba8f6952817bb232a /.github | |
parent | f001af2fe3ca977beb22fefefb2f98ba2c076d49 (diff) | |
download | voidsky-36b2a87a063af8d265fa787b408ba38761bc4276.tar.zst |
Skip `intl:compile` if not needed (#8837)
* skip intl compile if not needed * add intl:compile to pull request ci * compile -> build just to match others
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pull-request-commit.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/pull-request-commit.yml b/.github/workflows/pull-request-commit.yml index 53e3cc998..8c48b54db 100644 --- a/.github/workflows/pull-request-commit.yml +++ b/.github/workflows/pull-request-commit.yml @@ -50,6 +50,7 @@ jobs: git config --global user.name "github-actions[bot]" git merge --no-edit ${{ github.head_ref }} yarn install + yarn intl:build - name: 🔦 Generate stats file for PR run: | @@ -73,6 +74,7 @@ jobs: if: ${{ !steps.get-base-stats.outputs.cache-hit }} run: | yarn install + yarn intl:build yarn generate-webpack-stats-file mv stats.json stats-base.json @@ -143,4 +145,3 @@ jobs: with: header: fingerprint-diff delete: true - |