Skip to content

nrwl/nx-shops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dec8e44 · Aug 22, 2024
Oct 14, 2022
Jul 16, 2024
Jul 16, 2024
Apr 24, 2023
Aug 1, 2019
Feb 26, 2023
Jul 16, 2024
Jul 16, 2024
Feb 26, 2023
Jul 16, 2024
Aug 1, 2019
Oct 27, 2023
Apr 1, 2021
Apr 17, 2023
Apr 17, 2023
Jul 18, 2024
Aug 21, 2024
Aug 21, 2024
Oct 27, 2023
Oct 27, 2023
Nov 14, 2023

Repository files navigation

NxCloud CI example repo

This repo is based on the Nx Examples repo but setup in a way to illustrate some of the benefits of using Nx and NxCloud together to setup CI.

The e2e targets are setup to serve the app statically from dist:

this is how the apps are served statically:

    "serve-static": {
      "executor": "@nrwl/web:file-server",
      "options": {
        "buildTarget": "cart:build"
      }
    },

This then results in this project graph:

The DTE solution can then be explained as such: https://youtu.be/NZF0ZJpgaJM?si=gLpTnTdygB1gx7wI&t=516

Here is an example DTE config that is applicable to most CI providers.

In the above yaml, if you remove the line that activate DTE:

# - run: npx nx-cloud start-ci-run --stop-agents-after="e2e"

it will go from finishing in 3 minutes, to finishing in 9 minutes. That is because we can now parallelise the tasks across machines. So it also illustrates the CI time savings we get from DTE.

You can also use the non-DTE CI config:

  • without NxCloud
  • with NxCloud

and you should notice a difference of 8-9 minutes down to 1-2 minutes because of caching. So it can also be used to explain the caching benefits.