From 52860fd53a9e97a504a6959af0d34d853aa71834 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Fri, 13 Mar 2026 19:23:38 +0000 Subject: [PATCH] fix(lint): use npx for prettier and resolve CI path issues --- scripts/lint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lint.js b/scripts/lint.js index f56580a828..14069483c8 100644 --- a/scripts/lint.js +++ b/scripts/lint.js @@ -177,7 +177,7 @@ export function runYamllint() { export function runPrettier() { console.log('\nRunning Prettier...'); - if (!runCommand('prettier --check .')) { + if (!runCommand('npx prettier --check .')) { console.log( 'Prettier check failed. Please run "npm run format" to fix formatting issues.', );