From the course: Angular: Workflows

Unlock the full course today

Join today to access over 22,700 courses taught by industry experts or purchase this course individually.

Continuous integration workflow

Continuous integration workflow - Angular Tutorial

From the course: Angular: Workflows

Start my 1-month free trial

Continuous integration workflow

- [Instructor] Now that we have a Circle configuration file, we can set up our GitHub project to work with CircleCI. Head to the settings tab, then the branches tab and we want to protect the master branch. Click protect this branch and we want to require certain status checks to pass before merging. You can see that the build jobs from the CircleCI configuration show up here. We want to verify checkout and install and the build and test jobs. Let's go ahead and save these changes. Let's use our continuous integration workflow. Let's head back to our project here. One quick thing that I have done here is I've updated the dependency cache name. Sometimes CircleCI will fail because of the cache so changing the name is a good first step in troubleshooting this. We first create a feature branch, git checkout -b feature/update-default-color. Head over to your component. It's under projects, your library, and the component file. Instead of the default green, we want to return a default…

Contents