astro-reactive-form/turbo.json
Fazza Razaq Amiarso 0853ca3b8f
fix: extends timeout for timed out test (#208)
* 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
2022-11-25 14:37:23 +01:00

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": {}
}
}