Copy server.watch config option from vite.config.(ts|js) to child vite server in development mode
#2052
Workflow file for this run
This file contains hidden or 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 react-router-dev will also run on Windows and OSX | |
| on: | |
| pull_request: | |
| paths: | |
| - "pnpm-lock.yaml" | |
| - "integration/**" | |
| - "packages/react-router-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: "[22]" | |
| 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: "[22]" | |
| browser: '["msedge"]' | |
| timeout: 120 | |
| integration-webkit: | |
| name: "👀 Integration Test" | |
| if: github.repository == 'remix-run/react-router' | |
| uses: ./.github/workflows/shared-integration.yml | |
| with: | |
| os: "macos-latest" | |
| node_version: "[22]" | |
| browser: '["webkit"]' | |
| timeout: 40 |