Integrating with CircleCI
Explore how to configure CircleCI workflows to automate Jest test coverage and testing checks within CI/CD pipelines. Understand the steps to set up YAML configurations, use orbs for Node and Yarn, and enforce test results before merging code. This lesson helps you build reliable automated testing processes in professional development environments.
We'll cover the following...
What is CircleCI
CircleCI is a tool for CI/CD that, unlike GitHub Actions, is not tied to a specific code repository platform. CircleCI can automate code workflows such as rules around merged code and application deployment. CircleCI uses YAML files —to define these workflows.
How can we use testing coverage inside CircleCI?
CircleCI allows us to automate testing and to surface the results of these tests prior to merging new code. Since the greatest benefit of tests is the continual assurance that our new code has not broken existing code, the automation of this is extremely beneficial. We can focus on development and let our CI/CD ...