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 buildif you want to run some specific group/job, you can select it by using:
circleci build --job JOB_NAMEwhere JOB_NAME is one of the job described in .circleci/config.yml.
Example:
circleci build --job tests_jsWhen running locally, it might be useful to run the debug job
Example:
circleci build --job debugThis job is not run in the CI server but can be used locally to test different scenarios, filter specific tests, etc.