We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510d6be commit 48fb4e7Copy full SHA for 48fb4e7
.github/workflows/test-win.yml
@@ -45,8 +45,13 @@ jobs:
45
- name: Install dependencies with yarn
46
run: yarn install
47
48
+ # Retry tests up to 3 times due to flaky tests on Windows CI
49
+ # https://stackoverflow.com/a/59365905
50
- name: Jest
- run: yarn test:coverage --ci -i --reporters=default --reporters=jest-junit
51
+ run: >-
52
+ yarn test:coverage --ci -i --reporters=default --reporters=jest-junit ||
53
54
+ yarn test:coverage --ci -i --reporters=default --reporters=jest-junit
55
env:
56
CI: true
57
0 commit comments