Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/integration-pr-windows-macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: PR (Full)

# PRs touching react-router-dev will also run on Windows and OSX
# PRs touching @react-router/dev will also run on Ubuntu/Firefox, Windows/Edge and
# OSX/WebKit as well as an Ubuntu/Chromium run on Node 20.18.

on:
pull_request:
Expand All @@ -15,6 +16,15 @@ concurrency:
cancel-in-progress: true

jobs:
integration-chromium:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[20.18]"
browser: '["chromium"]'

integration-firefox:
name: "👀 Integration Test"
if: github.repository == 'remix-run/react-router'
Expand Down Expand Up @@ -42,4 +52,4 @@ jobs:
os: "macos-latest"
node_version: "[22]"
browser: '["webkit"]'
timeout: 40
timeout: 50
Loading