
* fix: extends timeout for timed out test * fix: add dependent script to turbo test * fix: disable threading for test * fix: add timeout to vitest config * chore: remove test-ci script * fix: extends timeout to validator vitest config * chore: conditionally disabling vitest threading on CI
27 lines
426 B
JSON
27 lines
426 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"outputs": []
|
|
},
|
|
"test:watch": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"env": ["CI"],
|
|
"outputs": []
|
|
},
|
|
"check": {},
|
|
"clean": {}
|
|
}
|
|
}
|