Add root test script using Turborepo

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-10 15:56:51 +08:00
parent f9f26bb590
commit 93abba044a
2 changed files with 6 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
"lint:fix": "biome check --write --unsafe && turbo run lint -- --fix", "lint:fix": "biome check --write --unsafe && turbo run lint -- --fix",
"typecheck": "turbo typecheck", "typecheck": "turbo typecheck",
"clean": "turbo clean", "clean": "turbo clean",
"test": "turbo test",
"db:codegen": "bun run --cwd packages/db-schema generate" "db:codegen": "bun run --cwd packages/db-schema generate"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -29,6 +29,11 @@
"dependsOn": ["^build"], "dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.test.ts"], "inputs": ["src/**/*.ts", "src/**/*.test.ts"],
"cache": false "cache": false
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**/*.ts", "src/**/*.test.ts"],
"cache": false
} }
} }
} }