Skip to content

Commit b9b4cb2

Browse files
authored
build(remix): Skip Node 18 & 16 integration tests because they often segfault (#11107)
1 parent df5f44e commit b9b4cb2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -879,14 +879,16 @@ jobs:
879879
strategy:
880880
fail-fast: false
881881
matrix:
882-
node: [18, 20, 21]
882+
# For whatever reason, these segfault on Node 18, so we are skipping these for now...
883+
node: [20, 21]
883884
remix: [1, 2]
884885
# Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
885886
include:
886887
- node: 14
887888
remix: 1
888-
- node: 16
889-
remix: 1
889+
# For whatever reason, these segfault on Node 16, so we are skipping these for now...
890+
# - node: 16
891+
# remix: 1
890892
steps:
891893
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
892894
uses: actions/checkout@v4

0 commit comments

Comments
 (0)