You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2022/12/22 12:20:35 UTC

[streampipes] 04/04: ci: run e2e tests only when linting succeeds

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit 7bd5f3e6204dd66b1ccd0637640a8a3766798b5e
Author: Samuel Abt <gi...@samuelabt.de>
AuthorDate: Wed Dec 21 23:11:21 2022 +0100

    ci: run e2e tests only when linting succeeds
---
 .github/workflows/pr-validation.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml
index 34dc64f87..b92c5df09 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -60,7 +60,7 @@ jobs:
 
   run-cypress-e2e-tests:
     runs-on: ubuntu-latest
-    needs: [python-quality-checks, python-unit-tests]
+    needs: [python-quality-checks, python-unit-tests, run-format-and-lint-ui]
     steps:
       - name: Checkout
         uses: actions/checkout@v1