-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunentropy.json
More file actions
46 lines (46 loc) · 1.23 KB
/
unentropy.json
File metadata and controls
46 lines (46 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"metrics": {
"lines-of-code": {
"$ref": "loc",
"name": "Lines of code",
"description": "total lines of typescript/tsx code in src/ directory",
"command": "@collect loc ./src --language TypeScript"
},
"lines-of-test-code": {
"$ref": "loc",
"name": "Lines of test code",
"description": "Total lines of TypeScript/TSX code in tests/ directory",
"command": "@collect loc ./tests --language TypeScript"
},
"test-coverage": {
"$ref": "coverage",
"command": "@collect coverage-lcov coverage/lcov.info"
},
"total-bundle-size": {
"$ref": "size",
"name": "Actions bundle size",
"description": "Total size of all compiled GitHub Actions",
"command": "@collect size .github/actions/*/dist/*.js"
},
"specs-size": {
"$ref": "loc",
"name": "Specs size (lines)",
"description": "Total lines of specification documentation",
"command": "@collect loc ./specs --language Markdown"
}
},
"storage": {
"type": "sqlite-s3"
},
"qualityGate": {
"mode": "soft",
"thresholds": [
{
"metric": "test-coverage",
"mode": "min",
"target": 80,
"severity": "blocker"
}
]
}
}