Get CircleCI CLI (https://circleci.com/docs/2.0/local-cli/#installing-the-circleci-local-cli-on-macos-and-linux-distros)
Clone this repo and run:
circleci build
if you want to run some specific group/job, you can select it by using:
circleci build --job JOB_NAME
where JOB_NAME is one of the job described in .circleci/config.yml
.
Example:
circleci build --job tests_js
When running locally, it might be useful to run the debug
job
Example:
circleci build --job debug
This job is not run in the CI server but can be used locally to test different scenarios, filter specific tests, etc.