From the course: Angular: Workflows

Unlock the full course today

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

Setting up CircleCI

Setting up CircleCI - Angular Tutorial

From the course: Angular: Workflows

Start my 1-month free trial

Setting up CircleCI

- [Instructor] We will now set up CircleCI which will allow us to run continuous integration for our library. But first, let's push our project up to GitHub. Let's create a new project here. We will name it ng-component. And create repository. We want to push an existing repository from the command line. Let us copy this, and head over to our terminal, and we add the remote, and now we can push this up to GitHub, git push origin -u master. And let's verify that it's up in GitHub. We can refresh here, and now out project is up in GitHub. Let's now define the CircleCI configuration, first, create a .CircleCI folder, and import the config.yml file provided in the exercise files. Grab the config.yml, and import it into that folder. Let's review this file, it is a CircleCI configuration. First, we specify that it is version two of CircleCI. Next, we define some common references to be used throughout our configuration. A setup, where we define a docker image that contains the browsers we…

Contents