Pipeline optimization
An important aspect of setting up a CI or CD workflow is optimization. This is because pipelines can be quite slow to run, commonly taking ten minutes or more to complete.
The reason for this, is that it takes time to build a VM, install dependencies, build the app in the VM, and run the tests, especially the end-to-end tests.
Click to load comments...