fix(lint): Fixes silent pass for formatting mistakes in gh ci (#10489)

This commit is contained in:
Abhi
2025-10-03 23:50:37 -04:00
committed by GitHub
parent 218379c9e2
commit 8170243fb4

View File

@@ -170,7 +170,7 @@ export function runYamllint() {
export function runPrettier() {
console.log('\nRunning Prettier...');
if (!runCommand('prettier --write .')) {
if (!runCommand('prettier --check .')) {
process.exit(1);
}
}