-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix(material/core): sanity checks not running #23289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Looks like when the granular sanity checks were introduced, some of the logic that determines whether a check should run wasn't written correctly which means that it isn't running at all. These changes move the check logic into a separate method in order to make it less prone to mistakes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, to clarify, these checks were never running? If so, I'm not sure if turning them on now would be considered breaking- I might make this PR target: major
.
Not never, but I think it regressed in #16973. These are all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Caretaker note: this might cause some Google teams to complain if they start seeing new warnings pop up in their logs |
Looks like when the granular sanity checks were introduced, some of the logic that determines whether a check should run wasn't written correctly which means that it isn't running at all. These changes move the check logic into a separate method in order to make it less prone to mistakes. (cherry picked from commit f8778b5)
Hi, I will stick to 12.2.0 until an acceptable solution is found. |
@eweap these checks aren't supposed to run in test environments. Can you file an issue? |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Looks like when the granular sanity checks were introduced, some of the logic that determines whether a check should run wasn't written correctly which means that it isn't running at all.
These changes move the check logic into a separate method in order to make it less prone to mistakes.