From 8543368dd177945578500910c0606910845ac4bc Mon Sep 17 00:00:00 2001 From: Stefan Benz <46600784+stebenz@users.noreply.github.com> Date: Tue, 1 Apr 2025 10:36:22 +0200 Subject: [PATCH] chore: correct order on pipeline --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca1025f6bd..256215acaa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -97,14 +97,6 @@ jobs: run: ZITADEL_DEV_UID=root pnpm run-sink if: ${{ matrix.command == 'test:acceptance' }} - - name: Run SAML SP - run: ZITADEL_DEV_UID=root pnpm run-samlsp - if: ${{ matrix.command == 'test:acceptance' }} - - - name: Run OIDC RP - run: ZITADEL_DEV_UID=root pnpm run-oidcrp - if: ${{ matrix.command == 'test:acceptance' }} - - name: Create Cloud Env File run: | if [ "${{ matrix.command }}" == "test:acceptance:prod" ]; then @@ -118,6 +110,14 @@ jobs: run: pnpm build if: ${{ startsWith(matrix.command, 'test:acceptance') }} + - name: Run SAML SP + run: ZITADEL_DEV_UID=root pnpm run-samlsp + if: ${{ matrix.command == 'test:acceptance' }} + + - name: Run OIDC RP + run: ZITADEL_DEV_UID=root pnpm run-oidcrp + if: ${{ matrix.command == 'test:acceptance' }} + - name: Check id: check run: pnpm ${{ contains(matrix.command, 'test:acceptance') && 'test:acceptance' || matrix.command }}