fix(flags): align board flag rendering (#1142)

* fix(flags): align board flag rendering

* ci: run react doctor on changed pr files
This commit is contained in:
Tommaso Casaburi
2026-05-27 16:06:13 +07:00
committed by GitHub
parent 45a113c621
commit 029939089f
7 changed files with 112 additions and 24 deletions
+5 -1
View File
@@ -89,9 +89,13 @@ jobs:
fi
- name: Run React Doctor
if: github.event_name != 'pull_request' || steps.react-ui-changes.outputs.changed == 'true'
if: github.event_name != 'pull_request'
run: yarn doctor
- name: Run React Doctor on changed React files
if: github.event_name == 'pull_request' && steps.react-ui-changes.outputs.changed == 'true'
run: yarn doctor --diff "${{ github.event.pull_request.base.sha }}" --annotations
- name: Skip React Doctor
if: github.event_name == 'pull_request' && steps.react-ui-changes.outputs.changed != 'true'
run: echo "Skipping React Doctor because this pull request did not change React UI source."