From 3ae801ec1f6a4669ed5e954d5dc1745f87318ccd Mon Sep 17 00:00:00 2001 From: "n8n-cat-bot[bot]" <283985454+n8n-cat-bot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 16:27:59 +0100 Subject: [PATCH] chore(ci): Fix silently broken container image pre-pull in DB tests and nightly coverage workflows (#36024) Co-authored-by: n8n-cat-bot[bot] Co-authored-by: Claude Opus 4.8 --- .github/workflows/test-db-reusable.yml | 2 +- .github/workflows/test-e2e-coverage-nightly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-db-reusable.yml b/.github/workflows/test-db-reusable.yml index e51c6555d94..586a6541644 100644 --- a/.github/workflows/test-db-reusable.yml +++ b/.github/workflows/test-db-reusable.yml @@ -36,7 +36,7 @@ jobs: uses: ./.github/actions/setup-nodejs - name: Pre-pull Test Container Images - run: pnpm tsx packages/testing/containers/pull-test-images.ts || true + run: pnpm --filter n8n-containers exec tsx pull-test-images.ts || true - name: Run Tests working-directory: packages/cli diff --git a/.github/workflows/test-e2e-coverage-nightly.yml b/.github/workflows/test-e2e-coverage-nightly.yml index 093efc649fb..122405606e5 100644 --- a/.github/workflows/test-e2e-coverage-nightly.yml +++ b/.github/workflows/test-e2e-coverage-nightly.yml @@ -114,7 +114,7 @@ jobs: - name: Pre-pull Test Container Images if: matrix.pre-pull-containers - run: pnpm tsx packages/testing/containers/pull-test-images.ts || true + run: pnpm --filter n8n-containers exec tsx pull-test-images.ts || true - name: Run tests working-directory: ${{ matrix.working-directory || github.workspace }}