From c7ed5bee97dbce0e4500ee3a22826aec94bc8d83 Mon Sep 17 00:00:00 2001 From: ImperialSympathizer Date: Sat, 20 Jul 2024 14:01:04 -0400 Subject: [PATCH] add retries to tests --- .github/workflows/mystery-events.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mystery-events.yml b/.github/workflows/mystery-events.yml index 499ce03b136..e2b756a9ca8 100644 --- a/.github/workflows/mystery-events.yml +++ b/.github/workflows/mystery-events.yml @@ -50,4 +50,4 @@ jobs: run: npm ci # Use 'npm ci' to install dependencies - name: tests # Step to run tests - run: npm run test${{ runner.debug == '0' &&':silent' || '' }} --retry=3 # silent on default. if debug run loud. Retry failed tests up to 3 times + run: npm run test${{ runner.debug == '0' &&':silent' || '' }} -- --retry=3 # silent on default. if debug run loud. Retry failed tests up to 3 times