Revert back to latest versions of node in CI (#7385) #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch | |
# main/dev branches will get the full run across all OS/browsers | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
paths-ignore: | |
- "docs/**" | |
- "scripts/**" | |
- "contributors.yml" | |
- "**/*.md" | |
jobs: | |
build: | |
name: "⚙️ Build" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-build.yml | |
unit-ubuntu: | |
name: "🧪 Unit Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-unit.yml | |
with: | |
os: "ubuntu-latest" | |
node_version: "[18, 20]" | |
unit-windows: | |
name: "🧪 Unit Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-unit.yml | |
with: | |
os: "windows-latest" | |
node_version: "[18, 20]" | |
integration-ubuntu: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "ubuntu-latest" | |
node_version: "[18, 20]" | |
browser: '["chromium", "firefox"]' | |
integration-windows: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "windows-latest" | |
node_version: "[18, 20]" | |
browser: '["msedge"]' | |
integration-macos: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/remix' | |
uses: ./.github/workflows/shared-test-integration.yml | |
with: | |
os: "macos-latest" | |
node_version: "[18, 20]" | |
browser: '["webkit"]' |