V7 rsc #80
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: 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"]' |