add retries to tests

This commit is contained in:
ImperialSympathizer 2024-07-20 13:59:04 -04:00
parent 0475946367
commit 8de1ca8fec
1 changed files with 1 additions and 1 deletions

View File

@ -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' || '' }} # silent on default. if debug run loud
run: npm run test${{ runner.debug == '0' &&':silent' || '' }} --retry=3 # silent on default. if debug run loud. Retry failed tests up to 3 times