Fix redirects returned from loader using data (#12021) #70
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/release-* branches will get the full run across | |
# all OS/browsers for multiple node versions | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- release-* | |
tags: | |
- "v0.0.0-nightly-*" | |
paths-ignore: | |
- ".changeset/**" | |
- "decisions/**" | |
- "docs/**" | |
- "examples/**" | |
- "jest/**" | |
- "scripts/**" | |
- "tutorial/**" | |
- "contributors.yml" | |
- "**/*.md" | |
jobs: | |
build: | |
name: "⚙️ Build" | |
if: github.repository == 'remix-run/react-router' | |
uses: ./.github/workflows/shared-build.yml | |
integration-ubuntu: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/react-router' | |
uses: ./.github/workflows/shared-integration.yml | |
with: | |
os: "ubuntu-latest" | |
node_version: "[18, 20]" | |
browser: '["chromium", "firefox"]' | |
integration-windows: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/react-router' | |
uses: ./.github/workflows/shared-integration.yml | |
with: | |
os: "windows-latest" | |
node_version: "[18, 20]" | |
browser: '["msedge"]' | |
integration-macos: | |
name: "👀 Integration Test" | |
if: github.repository == 'remix-run/react-router' | |
uses: ./.github/workflows/shared-integration.yml | |
with: | |
os: "macos-latest" | |
node_version: "[18, 20]" | |
browser: '["webkit"]' |