Skip to content

Commit 8c7b5b5

Browse files
authored
build(remix): only run Node 14, 16 integration tests for Remix v1 (#10250)
1 parent a9e52e7 commit 8c7b5b5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,14 @@ jobs:
778778
strategy:
779779
fail-fast: false
780780
matrix:
781-
node: [14, 16, 18, 20, 21]
781+
node: [18, 20, 21]
782782
remix: [1, 2]
783+
# Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
784+
include:
785+
- node: 14
786+
remix: 1
787+
- node: 16
788+
remix: 1
783789
steps:
784790
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
785791
uses: actions/checkout@v4

0 commit comments

Comments
 (0)