mirror of
https://github.com/status-im/status-web-archive.git
synced 2025-01-09 07:42:11 +00:00
6fc6410b32
* add new GitHub Action for CI * add yarn flag * use actions v3 * add ci badge (lol) * cache lint and format scripts * add more steps * remove unused component * fix lint errors * remove unsued eslint plugins
28 lines
469 B
JSON
28 lines
469 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"dependsOn": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.base.json"]
|
|
}
|