We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df5f44e commit b9b4cb2Copy full SHA for b9b4cb2
.github/workflows/build.yml
@@ -879,14 +879,16 @@ jobs:
879
strategy:
880
fail-fast: false
881
matrix:
882
- node: [18, 20, 21]
+ # For whatever reason, these segfault on Node 18, so we are skipping these for now...
883
+ node: [20, 21]
884
remix: [1, 2]
885
# Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
886
include:
887
- node: 14
888
remix: 1
- - node: 16
889
- remix: 1
+ # For whatever reason, these segfault on Node 16, so we are skipping these for now...
890
+ # - node: 16
891
+ # remix: 1
892
steps:
893
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
894
uses: actions/checkout@v4
0 commit comments