ci: enable typecheck in code-quality workflow (#157)

* ci: enable typecheck in code-quality workflow

* chore: added typecheck to controller-ext
This commit is contained in:
Dani Akash
2026-01-05 18:58:05 +05:30
committed by GitHub
parent a8a4f2ca5e
commit 86ec6eac28
2 changed files with 3 additions and 2 deletions

View File

@@ -10,7 +10,8 @@
"build:dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "node tests/test-simple.js",
"test:auto": "node tests/test-auto.js"
"test:auto": "node tests/test-auto.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"browser-automation",

View File

@@ -22,7 +22,7 @@
"test:controller": "bun run --filter @browseros/server test:controller",
"test:integration": "bun run --filter @browseros/server test:integration",
"typecheck": "tsc --build",
"typecheck": "bun run --filter '*' typecheck",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --write --unsafe",