From 6d594b1d5a557137aa8a823c496094ee942a1b01 Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Thu, 14 Mar 2024 16:50:40 +0000 Subject: [PATCH] build(remix): Skip Node 18 & 16 integration tests because they often segfault --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dc20986c90ec..9c216581322a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -879,14 +879,16 @@ jobs: strategy: fail-fast: false matrix: - node: [18, 20, 21] + # For whatever reason, these segfault on Node 18, so we are skipping these for now... + node: [20, 21] remix: [1, 2] # Remix v2 only supports Node 18+, so run Node 14, 16 tests separately include: - node: 14 remix: 1 - - node: 16 - remix: 1 + # For whatever reason, these segfault on Node 16, so we are skipping these for now... + # - node: 16 + # remix: 1 steps: - name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }}) uses: actions/checkout@v4