supermemory/turbo.json
Dhravya Shah 78269ff5d0 chore(ci): add JS tools unit tests to CI and turbo pipeline
Wire @supermemory/tools and @supermemory/ai-sdk unit tests into CI and
update workspace turbo config and lockfile.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-07 19:40:06 -07:00

32 lines
567 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$"]
},
"test:unit": {
"inputs": ["$TURBO_DEFAULT$"]
},
"dev": {
"cache": false,
"persistent": true
},
"dev:app": {
"cache": false,
"persistent": true
}
}
}