Skip to content

Commit 2e210fe

Browse files
committed
chore: Run tests up to 50 times.
1 parent af1dbaa commit 2e210fe

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ jobs:
6363
- name: Run tests
6464
run: |
6565
cd main
66-
npm run test:ci
66+
for i in $(seq 1 50);
67+
do
68+
echo "Attempt $i"
69+
npm run test:ci
70+
done
6771
6872
webdriverio_tests:
6973
name: WebdriverIO tests (against pinned v12)

0 commit comments

Comments
 (0)