Configuring CI Using GitHub Actions and Nx

Nx is a smart, fast and extensible build system, and it works really well with monorepos. Monorepos provide a lot of advantages:

  • Everything at that current commit works together. Changes can be verified across all affected parts of the organization.
  • Easy to split code into composable modules
  • Easier dependency management
  • One toolchain setup
  • Code editors and IDEs are "workspace" aware
  • Consistent developer experience
  • And more ...

But they come with their own technical challenges. The more code you add into your repository, the slower the CI gets.

Setting GitHub Actions

Below is an example of a GitHub Actions setup for an Nx workspace only building and testing what is affected.

1name: CI
2on:
3  push:
4    branches:
5      - main
6  pull_request:
7
8jobs:
9  main:
10    runs-on: ubuntu-latest
11    if: ${{ github.event_name != 'pull_request' }}
12    steps:
13      - uses: actions/checkout@v2
14        name: Checkout [main]
15        with:
16          fetch-depth: 0
17      - name: Derive appropriate SHAs for base and head for `nx affected` commands
18        uses: nrwl/nx-set-shas@v2
19      - uses: actions/setup-node@v1
20        with:
21          node-version: '14'
22      - run: npm install
23      - run: npx nx affected --target=build --parallel=3
24      - run: npx nx affected --target=test --parallel=2
25  pr:
26    runs-on: ubuntu-latest
27    if: ${{ github.event_name == 'pull_request' }}
28    steps:
29      - uses: actions/checkout@v2
30        with:
31          ref: ${{ github.event.pull_request.head.ref }}
32          fetch-depth: 0
33      - name: Derive appropriate SHAs for base and head for `nx affected` commands
34        uses: nrwl/nx-set-shas@v2
35      - uses: actions/setup-node@v1
36        with:
37          node-version: '14'
38      - run: npm install
39      - run: npx nx affected --target=build --parallel=3
40      - run: npx nx affected --target=test --parallel=2

The pr and main jobs implement the CI workflow. Setting timeout-minutes is needed only if you have very slow tasks.

You can find more information about using GitHub Actions on the nx-tag-successful-ci-run and nx-set-shas repos.

Distributed CI with Nx Cloud

A computation cache is created on your local machine to make the developer experience faster. This allows you to not waste time re-building, re-testing, re-linting, or any number of other actions you might take on code that hasn't changed. Because the cache is stored locally, you are the only member of your team that can take advantage of these instant commands. You can manage and share this cache manually.

Nx Cloud allows this cache to be shared across your entire organization, meaning that any cacheable operation completed on your workspace only needs to be run once. Nx Cloud also allows you to distribute your CI across multiple machines to make sure the CI is fast even for very large repos.

Learn more about configuring your CI environment using Nx Cloud with Distributed Caching and Distributed Task Execution in the Nx Cloud docs.