From 1db28b4e308f0b8a0f691dbd5016074dd8f3a508 Mon Sep 17 00:00:00 2001 From: Rhys Bartels-Waller Date: Sat, 11 Mar 2023 12:49:56 +0100 Subject: [PATCH] ci: build Dockerfile in CI without cache It's possible for changes in package dependencies to remove the need for a local `node_modules` directory in `cardano-services`, but our existing workflows will use available cache, which are not invalidated by this scenario. This change ensure at least one build in CI checks we can reliably build the image. Note that omitting the `target` tells the Docker engine to build each stage. --- .github/workflows/continuous-integration-e2e.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/continuous-integration-e2e.yaml b/.github/workflows/continuous-integration-e2e.yaml index c2225094ed2..1c0c7917665 100644 --- a/.github/workflows/continuous-integration-e2e.yaml +++ b/.github/workflows/continuous-integration-e2e.yaml @@ -26,6 +26,7 @@ jobs: run: | yarn install --immutable --inline-builds yarn build + docker build --no-cache . - name: 🌐 Setup local test network working-directory: packages/e2e