From 860eb6008686f104a764477f15f0f860e01f9ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 6 Jul 2021 22:37:03 +0100 Subject: [PATCH] fix(ci): retry e2e tests --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37f9ac895..bc2380261 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -618,7 +618,11 @@ jobs: run: /usr/local/bin/heroku container:release web --app karma-demo - name: Run e2e test - run: make -C ui/e2e test + uses: nick-invision/retry@v2.4.1 + with: + timeout_minutes: 10 + max_attempts: 3 + command: make -C ui/e2e test - name: Rollback on failure if: failure()