From 0b9fb82de2380c007b4a718fdc339d061ada1bc4 Mon Sep 17 00:00:00 2001 From: Marco Carrozzo Date: Thu, 12 Jan 2023 17:22:55 +0100 Subject: [PATCH] force e2e only after build-libs, lint, unit-tests (#8136) --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9edf69f1d2..a692181e60 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -153,7 +153,7 @@ jobs: e2e-storybook: timeout-minutes: 20 name: "e2e: storybook" - needs: [build-libs] + needs: [build-libs, lint, unit-tests] runs-on: ubuntu-22.04 steps: - name: Checkout repository @@ -172,7 +172,7 @@ jobs: e2e: timeout-minutes: 90 name: "e2e: ${{ matrix.e2e-test.description }}" - needs: [build-libs] + needs: [build-libs, lint, unit-tests] runs-on: ubuntu-22.04 strategy: fail-fast: false