From 4230192d64ffaf78a421c4103eb2a2c97150a783 Mon Sep 17 00:00:00 2001 From: NikhilMahendran <150480880+NikhilMahendran@users.noreply.github.com> Date: Sun, 12 May 2024 12:19:19 -0700 Subject: [PATCH] Create phase1.md --- admin/cipipeline/phase1.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 admin/cipipeline/phase1.md diff --git a/admin/cipipeline/phase1.md b/admin/cipipeline/phase1.md new file mode 100644 index 0000000..76bf366 --- /dev/null +++ b/admin/cipipeline/phase1.md @@ -0,0 +1,3 @@ +# Status + +The overarching plan for the ci/cd pipeline is outlined in phase1.drawio. To summarize, once a developer pushes code from a pull request to the main branch, the code should be linted for style errors, checked for redundancy and other mistakes automatically. We would also have someone manually review for anything that is not automatically caught, or just to make sure that the implemented code actually performs the functionality that is required. On top of this though, we plan to implement unit and end to end testing to make sure the code is automatically checked for functionality working correctly. This double check is implemented as it is important to have a manual check on all the code being pushed as well. Finally, documentation would be generated, either stating the proper updates and that everything is working, or that there are bugs/errors somewhere and point the developers to where it is and what is going wrong. Finally the updates will be automatically deployed. We currently have the set up and unit tests implemented at this very moment. Once we have more code to actually begin testing, we will add the end to end tests and documentation features. We are also planning on implementing code quality checks, but are working on finding the exact way of actually implementing it. A