You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>Supports builds from any specific branch, not just the <code>main</code> branch.</td>
334
+
<td>Enables builds to be triggered from any Git branch, not limited to the main or default branch.</td>
335
335
</tr>
336
336
<tr>
337
337
<td>D102</td>
338
338
<td>Pull Request Builds</td>
339
-
<td>Supports building pull requests (PRs), not limited to direct pushes to branches.</td>
339
+
<td>Supports automatic builds for pull requests (PRs), allowing validation before merging into target branches.</td>
340
340
</tr>
341
341
<tr>
342
342
<td>D103</td>
343
343
<td>Clean Build Environments</td>
344
-
<td>Supports building in clean environments, such as containers or VMs.</td>
344
+
<td>Ensures builds run in isolated, reproducible environments (e.g., containers or virtual machines) to avoid contamination from previous runs.</td>
345
345
</tr>
346
346
<tr>
347
347
<td>D201</td>
348
348
<td>Unit Testing</td>
349
-
<td>Supports unit testing, including unit or component-level tests.</td>
349
+
<td>Supports execution of unit or component-level tests to validate individual functions or modules in isolation.</td>
350
350
</tr>
351
351
<tr>
352
352
<td>D202</td>
353
353
<td>Functional Testing</td>
354
-
<td>Supports functional testing, such as integration or end-to-end (E2E) tests.</td>
354
+
<td>Enables running functional, integration, or end-to-end (E2E) tests to validate system behavior and interactions.</td>
355
355
</tr>
356
356
<tr>
357
357
<td>D203</td>
358
358
<td>Performance Testing</td>
359
-
<td>Supports performance testing, including load, stress, or throughput testing.</td>
359
+
<td>Supports performance-related testing, such as load, stress, and scalability tests, to evaluate system responsiveness and stability under pressure.</td>
360
360
</tr>
361
361
<tr>
362
362
<td>D204</td>
363
363
<td>Code Coverage</td>
364
-
<td>Supports measuring code coverage, including line, branch, or function coverage.</td>
364
+
<td>Enables measurement of test coverage, including metrics like line, branch, and function coverage, to assess test effectiveness.</td>
365
365
</tr>
366
366
<tr>
367
367
<td>D205</td>
368
368
<td>Accessibility Testing</td>
369
-
<td>Supports accessibility testing for standards compliance, such as WCAG.</td>
369
+
<td>Supports testing for compliance with accessibility standards (e.g., WCAG) to ensure usability for people with disabilities.</td>
370
370
</tr>
371
371
<tr>
372
372
<td>D301</td>
373
-
<td>Security Scanning</td>
374
-
<td>Supports security scanning, including SAST and DAST.</td>
373
+
<td>Vulnerability Scanning</td>
374
+
<td>Scanning source code, containers, or infrastructure for known security vulnerabilities using tools like Snyk, Trivy, or SonarQube security rules.</td>
375
375
</tr>
376
376
<tr>
377
377
<td>D302</td>
378
378
<td>License Scanning</td>
379
-
<td>Supports license scanning using tools like SPDX, FOSSology, or license-checkers.</td>
379
+
<td>Checking open-source dependencies for license compliance and legal risks to avoid unapproved or incompatible usage.</td>
0 commit comments