Skip to content

Commit 4f63503

Browse files
committed
ci: Increase test timeout / Don't fail fast on CI
Sometimes the default timeout of 10s per test is not enough within the GitHub Actions CI.
1 parent fccdf44 commit 4f63503

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
test:
1313
name: Unit and Integration
1414
strategy:
15+
fail-fast: false # Do not stop other jobs if one fails
1516
matrix:
1617
version: [20, 22, 23]
1718
os: [ubuntu-24.04, windows-2025, macos-15]

ava.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ export default {
1818
},
1919
nodeArguments,
2020
workerThreads: false,
21+
timeout: "20s", // Increased timeout for slower CI environments
2122
};

0 commit comments

Comments
 (0)