From 2f39f16ad1f2543de09f4f81b87e81d345c55ba1 Mon Sep 17 00:00:00 2001 From: alina sireneva Date: Thu, 25 Apr 2024 12:22:13 +0300 Subject: [PATCH] ci: retry e2e-deno a few times --- .github/workflows/test.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c965999a..2377652e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -123,4 +123,9 @@ jobs: API_ID: ${{ secrets.TELEGRAM_API_ID }} API_HASH: ${{ secrets.TELEGRAM_API_HASH }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: cd e2e/deno && ./cli.sh ci + uses: nick-fields/retry@v2 + # thanks docker networking very cool + with: + max_attempts: 3 + timeout_minutes: 30 + command: cd e2e/deno && ./cli.sh ci