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 c1a8633 commit 86bc01bCopy full SHA for 86bc01b
.github/workflows/build-test.yml
@@ -177,7 +177,13 @@ jobs:
177
# README and documentation is updated, we want to ensure that links
178
# remain correct. (This also checks external links, though that's a
179
# secondary concern.)
180
- run: pnpm run md-link:check
+ # Use retry action to automatically retry once if the check fails due to
181
+ # transient network issues or other flakiness.
182
+ uses: nick-fields/retry@v3
183
+ with:
184
+ max_attempts: 2
185
+ timeout_minutes: 5
186
+ command: pnpm run md-link:check
187
188
- name: Test
189
# Run the tests and print out the coverage information. In the future,
0 commit comments