We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59eeb1 commit b148c66Copy full SHA for b148c66
2 files changed
.github/workflows/ci-cd.yml
@@ -44,7 +44,7 @@ jobs:
44
- name: Run type checking
45
run: |
46
if [ -f "tsconfig.json" ]; then
47
- npx tsc --noEmit || true
+ npm run check || npx tsc --noEmit || true
48
fi
49
50
- name: Run linting
package.json
@@ -8,6 +8,7 @@
8
"build": "vite build && esbuild server/index.ts --platform=node --packages=external --bundle --format=esm --outdir=dist",
9
"start": "NODE_ENV=production node dist/index.js",
10
"check": "tsc",
11
+ "type-check": "tsc --noEmit",
12
"test": "echo \"✅ Tests passed - No test suite configured yet\" && exit 0",
13
"lint": "echo \"✅ Linting passed - No linter configured yet\" && exit 0",
14
"db:push": "drizzle-kit push"
0 commit comments