CI/CD pipeline Best practices 💡
CI/CD best practices ✅ Keep the pipeline fast ✅ Fail fast For example, if "integration tests" fail more often than "unit tests", run them first. ✅ Do not run everything every time Do you need to run the linter in PR? Yes Do you need to run the linter after the merge? Probably not ✅ Avoid "God" pipelines! Split the workflow when it makes sense. ✅ Do not use long-lasting credentials/tokens. If possi... [read more]

