-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathquality-gate.manifest.json
More file actions
70 lines (70 loc) · 1.95 KB
/
quality-gate.manifest.json
File metadata and controls
70 lines (70 loc) · 1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://raw.githubusercontent.com/govuk-one-login/quality-gates/refs/tags/v0.1.0/schemas/schema.json",
"services": [
{
"service-tag": "home",
"quality-gates": [
{
"check-types": [
"unit",
"new feature",
"regression",
"code style and linting"
],
"provider": "GitHub",
"phase": "pre-merge",
"config": {
"file": ".github/workflows/build-test-application.yml",
"path": "jobs.build_test_application",
"name": "Build & Test Application"
}
},
{
"check-types": ["integration", "accessibility", "regression"],
"provider": "GitHub",
"phase": "pre-merge",
"config": {
"file": ".github/workflows/integration-tests.yml",
"path": "jobs.end_to_end_tests",
"name": "Integration tests"
}
},
{
"check-types": [
"unit",
"new feature",
"regression",
"code style and linting"
],
"provider": "GitHub",
"phase": "build",
"config": {
"file": ".github/workflows/on-merge-to-main.yml",
"path": "jobs.validate_application",
"name": "Verify & Publish"
}
},
{
"check-types": ["code quality"],
"provider": "GitHub",
"phase": "pre-merge",
"config": {
"file": ".github/workflows/checkov.yml",
"path": "jobs.checkov",
"name": "Checkov"
}
},
{
"check-types": ["code quality", "unit test coverage"],
"provider": "GitHub",
"phase": "pre-merge",
"config": {
"file": ".github/workflows/sonarcloud.yml",
"path": "jobs.sonarcloud",
"name": "SonarCloud"
}
}
]
}
]
}