Skip to content

Commit cfddf35

Browse files
committed
Improve CI Reliability of Generator Specs
Generator specs experience random failures likely due to numerous network requests to the node registry. To mitigate this, `continue-on-error: true` is set, allowing the current combination to fail without halting other matrix combinations.
1 parent e52b335 commit cfddf35

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/generator.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
test:
1616
name: Generator specs
1717
runs-on: ${{ matrix.os }}
18+
# Generator specs experience random failures likely due to numerous
19+
# network requests to the node registry.
20+
# To mitigate this, `continue-on-error: true` is set, allowing the current
21+
# combination to fail without halting other matrix combinations.
22+
continue-on-error: true
1823
strategy:
1924
matrix:
2025
os: [ubuntu-latest]

0 commit comments

Comments
 (0)