degenfeed-web/turbo.json
cryptorugmunch 153818fe38
Some checks failed
CI / lint (pull_request) Failing after 12s
CI / typecheck (pull_request) Failing after 10s
CI / test (pull_request) Failing after 9s
ci: add Forgejo CI and make lint/typecheck/test pass
Changes:

- Add .forgejo/workflows/ci.yml with lint/typecheck/test jobs

- Fix pnpm lockfile supply-chain policy violations

- Fix biome lint/format errors across all packages

- Add minimal test suites to all vitest packages

- Fix TypeScript errors (Next.js 15 params Promise, non-null assertions)

- Ignore *.tsbuildinfo build artifacts

- Add .npmrc with resolution-mode=lowest-direct
2026-07-03 04:47:12 +02:00

19 lines
354 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {},
"typecheck": {
"dependsOn": ["^build"]
},
"test": {}
}
}