Files
agentic-dev/turbo.json
Danijel Martinek bd50a67662 feat(storybook): wire @storybook/test-runner for story smoke tests
Every story is now executed as a smoke test (mount + no console errors)
via @storybook/test-runner. New script: pnpm test:stories runs
build-storybook then test-storybook against the static build.

Spec: §6.8

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-05 19:10:41 +02:00

64 lines
1.3 KiB
JSON

{
"$schema": "https://turborepo.dev/schema.json",
"globalEnv": ["CI", "DATABASE_URL", "PAYLOAD_SECRET", "NODE_ENV"],
"boundaries": {
"tags": {
"app": {
"dependencies": {
"allow": ["app", "core", "core-composition", "feature", "tooling"]
}
},
"feature": {
"dependencies": {
"allow": ["core", "tooling"]
}
},
"core": {
"dependencies": {
"allow": ["core", "core-composition", "tooling"]
}
},
"core-composition": {
"dependencies": {
"allow": ["core", "core-composition", "feature", "tooling"]
}
},
"tooling": {
"dependencies": {
"allow": ["tooling"]
}
}
}
},
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": ["^build"]
},
"test:e2e": {
"dependsOn": ["^build"],
"cache": false
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"build-storybook": {
"outputs": ["storybook-static/**"]
},
"test:stories": {
"dependsOn": ["build-storybook"],
"cache": false
}
}
}