ContinuousIntegration
Continuous integration is a software development practice where members of a team integrate their work frequently, usually multiple times per day, into a shared repository. Each integration is verified by an automated build and a set of tests to detect integration errors as early as possible.
A continuous integration system monitors the repository for changes, runs a pipeline that may include compilation,
Origin and usage: CI arose with practices from Extreme Programming in the late 1990s and early 2000s
Benefits and challenges: Benefits include early defect detection, reduced integration risk, more frequent releases, consistent build
Relation to CD: Continuous integration focuses on merging code and validating builds; continuous delivery and continuous