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 7db79e145e
commit 1a06282061

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);
}
}