Fix a few small issues with prerendering in v7 #543
Workflow file for this run
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 (Base) | |
# All PRs touching code will run tests on ubuntu/node/chromium | |
on: | |
pull_request: | |
paths-ignore: | |
- ".changeset/**" | |
- "decisions/**" | |
- "docs/**" | |
- "examples/**" | |
- "jest/**" | |
- "scripts/**" | |
- "tutorial/**" | |
- "contributors.yml" | |
- "**/*.md" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: "⚙️ Build" | |
if: github.repository == 'remix-run/react-router' | |
uses: ./.github/workflows/shared-build.yml | |
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]" | |
browser: '["chromium"]' |