Skip to content

Commit cd85bb5

Browse files
authored
Include Fizz runtime diff in CI (#34525)
1 parent 07e4974 commit cd85bb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/runtime_build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
if: steps.node_modules.outputs.cache-hit != 'true'
195195
- run: |
196196
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)
198198
199199
# ----- FEATURE FLAGS -----
200200
flags:
@@ -567,7 +567,7 @@ jobs:
567567
- name: Search build artifacts for unminified errors
568568
run: |
569569
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)
571571
572572
check_release_dependencies:
573573
name: Check release dependencies

0 commit comments

Comments
 (0)