Skip to content

Collapse Packages

Collapse Packages #37

name: PR (Full)
# PRs touching remix-dev will also run on Windows and OSX
on:
pull_request:
paths:
- "packages/remix-dev/**"
- "!**/*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
integration-firefox:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[20]"
browser: '["firefox"]'
integration-msedge:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "windows-latest"
node_version: "[20]"
browser: '["msedge"]'
integration-webkit:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "macos-latest"
node_version: "[20]"
browser: '["webkit"]'