-
Notifications
You must be signed in to change notification settings - Fork 0
283 lines (271 loc) · 8.96 KB
/
quality-check.yaml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
name: Quality Check
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
checks: write
jobs:
changelog-check:
name: 'Changelog Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: remove label not matching title - fix
if: |
startsWith(github.event.pull_request.title, 'fix:') ||
startsWith(github.event.pull_request.title, 'fix(')
uses: actions-ecosystem/action-remove-labels@v1
with:
labels: feat
- name: remove label not matching title - feat
if: |
startsWith(github.event.pull_request.title, 'feat:') ||
startsWith(github.event.pull_request.title, 'feat(')
uses: actions-ecosystem/action-remove-labels@v1
with:
labels: fix
- name: add label based on title - fix
if: |
startsWith(github.event.pull_request.title, 'fix:') ||
startsWith(github.event.pull_request.title, 'fix(')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: fix
- name: add label based on title - feat
if: |
startsWith(github.event.pull_request.title, 'feat:') ||
startsWith(github.event.pull_request.title, 'feat(')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: feature
- name: add label based on title - chore
if: |
startsWith(github.event.pull_request.title, 'chore:') ||
startsWith(github.event.pull_request.title, 'chore(')
uses: actions-ecosystem/action-add-labels@v1
with:
labels: no release notes
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v20
id: verify-changelog-files
with:
files: |
CHANGELOG.md
- uses: mheap/github-action-required-labels@v1
if: steps.verify-changed-files.outputs.files_changed == 'false'
with:
mode: minimum
count: 1
labels: "no release notes"
catalog-check:
name: 'Catalog Updates Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
dependency-graph: 'generate-and-submit'
dependency-graph-continue-on-failure: false
gradle-home-cache-cleanup: true
- name: Run Dependency Updates
run: |
./gradlew --quiet --console=plain dependencyUpdates
style-check:
name: 'Style Check'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-home-cache-cleanup: true
- name: Run Linter
run: |
./gradlew --quiet --console=plain ktlintCheck
- name: Push Checkstyle report
uses: jwgmeligmeyling/[email protected]
if: success() || failure() # always run even if the previous step fails
with:
path: '**/*Check.xml'
unit-tests:
name: 'Unit and Integration Tests'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-home-cache-cleanup: true
- name: Setup Docker (for Test Containers)
run: |
sudo apt update -y
sudo apt install -y docker docker-compose
- name: Run Test Suite
run: |
./gradlew --stacktrace --console=plain check
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- uses: madrapps/[email protected]
if: success() || failure() # always run even if the previous step fails
with:
paths: "**/testCodeCoverageReport.xml"
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 70
min-coverage-changed-files: 70
title: "Coverage Report"
update-comment: true
continue-on-error: true
pass-emoji: "✅"
fail-emoji: "🚫"
functional-tests:
name: 'UI Tests'
runs-on: ubuntu-latest
needs:
- catalog-check
- style-check
- unit-tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-home-cache-cleanup: true
- name: Restore IDEA Cached Indexes
uses: actions/cache/restore@v4
with:
key: 'intellij-indexes-cache'
path: |
packages/jetbrains-plugin/build/idea-sandbox/system-test/index
packages/jetbrains-plugin/build/idea-sandbox/system/index
- name: Prepare License Key
env:
JB_TEST_KEY: ${{ secrets.JB_TEST_KEY }}
run: |
mkdir -p packages/jetbrains-plugin/build/idea-sandbox/config-uiTest
echo "$JB_TEST_KEY" | base64 -d > packages/jetbrains-plugin/build/idea-sandbox/config-uiTest/idea.key
- name: Start UI Test Environment
run: |
export DISPLAY=:99.0
Xvfb -ac :99 -screen 0 1920x1080x24 &
sleep 10
mkdir -p packages/jetbrains-plugin/build/reports
./gradlew :packages:jetbrains-plugin:runIdeForUiTests > packages/jetbrains-plugin/build/reports/idea.log &
- name: Wait for IDE to start
uses: jtalk/url-health-check-action@v3
with:
url: "http://127.0.0.1:8082"
max-attempts: 15
retry-delay: 30s
- name: Run UI Tests
run: |
export DISPLAY=:99.0
./gradlew --quiet --console=plain :packages:jetbrains-plugin:uiTest
- uses: actions/upload-artifact@v4
name: Upload UI Test Failures
if: success() || failure() # always run even if the previous step fails
with:
name: ui-test-failures
path: |
**/build/reports/**/*.html
**/build/reports/**/*.log
**/build/reports/**/*.png
**/build/idea-sandbox/system/**/*.log
**/build/idea-sandbox/system-test/**/*.log
**/video/**/*.avi
- name: Cache IDEA Indexes
uses: actions/cache/save@v4
if: success() || failure() # always run even if the previous step fails
with:
key: 'intellij-indexes-cache'
path: |
packages/jetbrains-plugin/build/idea-sandbox/system-test/index
packages/jetbrains-plugin/build/idea-sandbox/system/index
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
fitness-check:
name: "Fitness Check"
runs-on: ubuntu-latest
needs:
- unit-tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-home-cache-cleanup: true
- name: Performance Tests
run: |
./gradlew --quiet --console=plain ":packages:jetbrains-plugin:jmh"
- name: JMH Benchmark Action
uses: kitlangton/jmh-benchmark-action@main
with:
jmh-output-path: build/reports/jmh/results.json
github-token: ${{ secrets.GITHUB_TOKEN }}
fail-on-regression: true
# the typo is on purpose, it's like this in the plugin
failue-threshold: -5
verify-plugin:
name: "Verify Plugin"
runs-on: ubuntu-latest
needs:
- fitness-check
- functional-tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-home-cache-cleanup: true
- name: Verify Plugin
run: |
./gradlew ":packages:jetbrains-plugin:verifyPlugin"