Skip to content

Commit 1f8a2ba

Browse files
committed
fix: Lints
1 parent e039f77 commit 1f8a2ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/application-pipeline/ri-circleci-pipeline.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Actions in this stage are designed to complete in under 3 minutes, allowing deve
163163
???+ required "Unit Tests"
164164
The unit tests are run by [Maven](https://maven.apache.org/) simultaneously with the `Build Code` step. The results of the unit tests are then uploaded to [CircleCI Test Insights](https://circleci.com/docs/insights) to track test performance and trends over time. CircleCI Test Insights provides visibility into test results, helping you monitor for any regressions and improve the efficiency of your testing process.
165165

166-
![](assets/circleci-unit-test-report.png)
166+
![Unit test Report](assets/circleci-unit-test-report.png)
167167

168168
???+ required "Code Quality"
169169
Code quality is enforced through the [PMD](https://maven.apache.org/plugins/maven-pmd-plugin/) and [Checkstyle](https://maven.apache.org/plugins/maven-checkstyle-plugin/) Maven plugins:
@@ -624,9 +624,8 @@ Actions in this stage are designed to complete in under 3 minutes, allowing deve
624624

625625
???+ required "Manual Approval"
626626
For manual approvals, you can use CircleCI’s [hold job](https://circleci.com/docs/workflows/#holding-a-workflow-for-a-manual-approval), which pauses the pipeline and waits for someone to approve it before proceeding. In this reference architecture, manual approvals are used to gate deployments to production. If code is pushed to a development or non-production branch, the pipeline will run all jobs up to the Gamma deployment stage. For production branches (in this case, `main`), the pipeline will deploy to Gamma, and if successful, a manual approval gate will activate. Once a designated individual or group approves this job, the pipeline will continue to deploy to production.
627-
628-
![Approval](assets/circleci-manual-approval.png)
629627

628+
![Approval](assets/circleci-manual-approval.png)
630629

631630
???+ required "Database Deploy"
632631
Spring Boot is configured to run [Liquibase](https://www.liquibase.org/) on startup. This reads the configuration in `src/main/resources/db/changelog/db.changelog-master.yml` to define the tables and initial data for the database:

0 commit comments

Comments
 (0)