Skip to content

Remove vite-node dependency in favor of Vite's native module runner APIs #2711

Remove vite-node dependency in favor of Vite's native module runner APIs

Remove vite-node dependency in favor of Vite's native module runner APIs #2711

name: PR (Full)
# 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 22.12.
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-chromium:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[22.12]"
browser: '["chromium"]'
integration-firefox:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "ubuntu-latest"
node_version: "[24]"
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: "[24]"
browser: '["msedge"]'
timeout: 90
integration-webkit:
name: "πŸ‘€ Integration Test"
if: github.repository == 'remix-run/react-router'
uses: ./.github/workflows/shared-integration.yml
with:
os: "macos-latest"
node_version: "[24]"
browser: '["webkit"]'