From 72a09768297890b3d9e933273a795ff6e341703c Mon Sep 17 00:00:00 2001 From: TheiLLeniumStudios <104288623+TheiLLeniumStudios@users.noreply.github.com> Date: Wed, 14 Jan 2026 23:43:31 +0100 Subject: [PATCH] ci: Run e2e tests after unit tests --- .github/workflows/pull_request.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index c428826..c74b4e9 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -102,15 +102,15 @@ jobs: kind version kind version | grep -q ${KIND_VERSION} - - name: Create Kind Cluster - run: | - kind create cluster - kubectl cluster-info + - name: Create Kind Cluster and Setup E2E Dependencies + run: KIND_CLUSTER=kind make e2e-setup - - - name: Test + - name: Run unit tests run: make test + - name: Run E2E tests + run: KIND_CLUSTER=kind make e2e + - name: Run quick A/B load tests uses: ./.github/actions/loadtest with: