fix(docker): remove prebuild lint check from docker (#1681)

This commit is contained in:
Waleed
2025-10-17 22:10:25 -07:00
committed by GitHub
parent a6122f2bbc
commit 3a0019bd13
2 changed files with 3 additions and 1 deletions

View File

@@ -26,6 +26,9 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint code
run: bun run lint:check
- name: Run tests with coverage
env:
NODE_OPTIONS: '--no-warnings'

View File

@@ -22,7 +22,6 @@
"lint:all": "bun run lint && bun run lint:helm",
"check": "bunx biome check --files-ignore-unknown=true",
"prepare": "bun husky",
"prebuild": "bun run lint:check",
"type-check": "turbo run type-check",
"release": "bun run scripts/create-single-release.ts"
},