We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10bfdb8 commit c46a6bdCopy full SHA for c46a6bd
2 files changed
.github/workflows/ci.yml
@@ -23,6 +23,10 @@ jobs:
23
steps:
24
- uses: actions/checkout@v7
25
26
+ - uses: actions/setup-node@v7
27
+ with:
28
+ node-version: 24
29
+
30
- name: Install Rust components
31
run: rustup component add rustfmt clippy
32
scripts/ci/run-node-checks.sh
@@ -31,6 +31,11 @@ run_node_tests() {
node scripts/ci/manage-labels.js --check
33
34
+ if node --help | grep -q -- "--test-force-exit"; then
35
+ # All assertions must finish, but a leaked worker handle must not hold CI open.
36
+ node_test_args+=(--test-force-exit)
37
+ fi
38
39
while IFS= read -r file; do
40
test_files+=("$file")
41
done < <(git ls-files '*.test.js' 'linux-features/*/test.js')
0 commit comments