astro-reactive-form/turbo.json
Ayo Ayco 13f96a4fe9
chore: set up test:coverage scripts (#260)
* chore: set up test:coverage scripts

* devops: bring back form test CI workaround
2023-02-01 18:05:27 +01:00

32 lines
512 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {
"outputs": []
},
"lint:fix": {
"outputs": []
},
"test:watch": {
"cache": false
},
"test:coverage": {
"cache": false
},
"dev": {
"cache": false
},
"test": {
"env": ["CI"],
"outputs": []
},
"check": {
"dependsOn": ["^build"]
},
"clean": {}
}
}