mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Fix check_error_codes CI job (#24692)
The diff command was missing a --quiet argument, causing the job not to fail when unminified messages were found.
This commit is contained in:
parent
060505e9dc
commit
42b330c1c9
|
|
@ -329,7 +329,7 @@ jobs:
|
|||
name: Search build artifacts for unminified errors
|
||||
command: |
|
||||
yarn extract-errors
|
||||
git diff || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
|
||||
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
|
||||
|
||||
yarn_test:
|
||||
docker: *docker
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user