No post body was provided.
Ask HN: What steps to take to ensure your merge request doesn't break anything?
1–3 of 3 posts
Re: Ask HN: What steps to take to ensure your merge request doesn't break anything?
#2- merge the smallest possible atomic changes regularly, avoid big bang merge
- if you can afford it, code reviews / pair programming
- unit tests ran by CI before/after merging
Re: Ask HN: What steps to take to ensure your merge request doesn't break anything?
#3- merge the smallest possible atomic changes regularly, avoid big bang merge - if you can afford it, code reviews / pair programming - unit tests ran by CI before/after merging
Also, automated integration tests and end to end tests.