fix(lint): use npx for prettier and resolve CI path issues

This commit is contained in:
mkorwel
2026-03-13 19:23:38 +00:00
parent 947eff6a05
commit 52860fd53a
+1 -1
View File
@@ -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.',
);