From dba6f6987fc4588149d08dc3a72945783656219a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20R=C3=B6nkk=C3=B6?= Date: Mon, 16 Jun 2025 12:36:29 +0300 Subject: [PATCH] Run E2E tests in parallel --- .github/workflows/cd.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 397d539..d8e1851 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -34,14 +34,11 @@ jobs: azure_subscription_id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} run_e2e_tests: + name: Run E2E tests needs: - run_unit_tests - check_code_formatting - publish_docker_image_to_acr - name: Run e2e tests - runs-on: ubuntu-24.04 - steps: - - name: Run e2e tests - uses: HSLdevcom/jore4-tools/github-actions/run-ci@main - with: - auth_version: "${{ needs.publish_docker_image_to_acr.outputs.docker_image }}" + uses: HSLdevcom/jore4-tools/.github/workflows/shared-run-e2e.yml@main + with: + auth_version: "${{ needs.publish_docker_image_to_acr.outputs.docker_image }}"