15.13CI/CD pipeline
A mature development pipeline might look like:
Developer
↓
feature branch
↓
Pull Request
↓
CI
├── compile/build
├── MUnit
├── static checks
└── coverage
↓
merge
↓
build versioned artifact
↓
publish artifact
↓
deploy DEV/QA
↓
smoke tests
↓
approval
↓
deploy PROD
This should be familiar from your Jenkins/GitHub Actions experience.