@samitouri / QOS-React / commits / cd85bb5616

Include Fizz runtime diff in CI (#34525)

Sebastian "Sebbie" Silbermann committed Sep 22, 2025 at 17:09 UTC cd85bb561612f9da467a0cb1978afbf843d25757
1 file changed +2 -2
.github/workflows/runtime_build_and_test.yml
+2 -2
@@ -194,7 +194,7 @@ jobs:
194 if: steps.node_modules.outputs.cache-hit != 'true'
195 - run: |
196 yarn generate-inline-fizz-runtime
197 - git diff --quiet || (echo "There was a change to the Fizz runtime. Run `yarn generate-inline-fizz-runtime` and check in the result." && false)
197 + git diff --exit-code || (echo "There was a change to the Fizz runtime. Run \`yarn generate-inline-fizz-runtime\` and check in the result." && false)
198
199 # ----- FEATURE FLAGS -----
200 flags:
@@ -567,7 +567,7 @@ jobs:
567 - name: Search build artifacts for unminified errors
568 run: |
569 yarn extract-errors
570 - git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
570 + git diff --exit-code || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
571
572 check_release_dependencies:
573 name: Check release dependencies