Skip to content

Commit 007e81a

Browse files
authored
ci: skip EMFILE test on Node.js 26 (#21265)
* ci: fix `EMFILE` test on Node.js 26.8+ * wip
1 parent 5634542 commit 007e81a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ jobs:
9191
- name: Fuzz Test
9292
run: node Makefile fuzz
9393
- name: Test EMFILE Handling
94+
# Node.js 26.8+ no longer reliably triggers `EMFILE` for small-file reads.
95+
# See: https://github.com/nodejs/node/pull/65327
96+
# TODO: Re-enable after replacing this with deterministic error injection.
97+
if: matrix.node != '26.x'
9498
run: npm run test:emfile
9599

96100
test_on_browser:

0 commit comments

Comments
 (0)