ci: ci: try to fix format checker

This commit is contained in:
gauthier-th
2024-06-25 16:42:50 +02:00
committed by Gauthier
parent c5e35aad05
commit 5865bfac96
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- name: Lint
run: pnpm lint
- name: Formatting
run: pnpm format:check --ignore-path .prettierignore
run: pnpm format:check
- name: Build
run: pnpm build

View File

@@ -17,7 +17,7 @@
"migration:create": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:create -d server/datasource.ts",
"migration:run": "ts-node -r tsconfig-paths/register --project server/tsconfig.json ./node_modules/typeorm/cli.js migration:run -d server/datasource.ts",
"format": "prettier --loglevel warn --write --cache .",
"format:check": "prettier --check --cache .",
"format:check": "prettier --check --cache . --ignore-path .prettierignore",
"typecheck": "pnpm typecheck:server && pnpm typecheck:client",
"typecheck:server": "tsc --project server/tsconfig.json --noEmit",
"typecheck:client": "tsc --noEmit",