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()