stack/turbo.json
Zai Shi 66f6c86ddf
Basic Unit Tests (#15)
* added basic api testing framework

* added credential signup test

* added current user test

* added github action

* fixed bugs in action file

* updated action

* added pnpm setup

* added dependency install

* updated pnpm lock

* only run server tests

* added new package for e2e test

* removed unused tests

* updated action

* updated test command

* added env var reading

* fixed typo

* fixed typo

* fixed unit tests with staging

* added delay e2e test

* added start server to action

* fixed typo

* fix aciton

* updated github action

* fixed bugs

* fixed eslint error
2024-04-24 14:24:56 +02:00

47 lines
698 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map"
],
"outputMode": "new-only"
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"start": {
"cache": false
},
"lint": {
"cache": false
},
"codegen": {
"cache": false
},
"prisma": {
"cache": false
},
"typecheck": {
"cache": false
},
"email": {
"cache": false
},
"test": {
"cache": false
}
}
}