diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9cb360d..54cc37df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,5 +66,5 @@ jobs: - run: npm ci - run: npm run lint - - run: npm run format + - run: npm run check-format diff --git a/frontend/package.json b/frontend/package.json index 559684bc..cb39436a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -14,7 +14,8 @@ "lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore", "lint:eslint": "eslint . --fix", "lint": "run-s lint:*", - "format": "prettier --write src/" + "format": "prettier --write src/", + "check-format": "prettier --check src" }, "dependencies": { "@primeuix/themes": "^1.0.0",