Framework Mode - Why CI/CD integrates testing into delivery
Folder Structure of a CI/CD Testing Project
ci-cd-testing-project/
├── src/
│ ├── main/
│ │ └── app-code/
│ └── test/
│ ├── unit/
│ ├── integration/
│ └── e2e/
├── scripts/
│ └── ci-cd-pipelines/
│ ├── build.yml
│ ├── test.yml
│ └── deploy.yml
├── config/
│ ├── environments/
│ │ ├── dev.env
│ │ ├── staging.env
│ │ └── prod.env
│ └── test-config.yml
├── reports/
│ └── test-results/
├── docs/
└── README.md