You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The diff command was missing a --quiet argument, causing the job not to
fail when unminified messages were found.
This commit will cause CI to fail because there's an unminified error
in main. The unminified error will be fixed by #24688.
Copy file name to clipboardExpand all lines: .circleci/config.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -329,7 +329,7 @@ jobs:
329
329
name: Search build artifacts for unminified errors
330
330
command: |
331
331
yarn extract-errors
332
-
git diff || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
332
+
git diff --quiet || (echo "Found unminified errors. Either update the error codes map or disable error minification for the affected build, if appropriate." && false)
0 commit comments