Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-rsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: pnpm i
- run: pnpm build
- run: pnpm -C packages/plugin-rsc tsc
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: pnpm i
- name: install react
if: ${{ matrix.react_version }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node_version: [20, 22, 24]
node_version: [22, 24, 26]
include:
# Active LTS + other OS
- os: macos-latest
node_version: 22
node_version: 24
- os: windows-latest
node_version: 22
node_version: 24
fail-fast: false

name: 'Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}'
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
if: github.repository == 'vitejs/vite-plugin-react'
timeout-minutes: 10
runs-on: ubuntu-latest
name: 'Lint: node-20, ubuntu-latest'
name: 'Lint: node-24, ubuntu-latest'
steps:
- uses: actions/checkout@v6
with:
Expand All @@ -105,10 +105,10 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5

- name: Set node version to 20
- name: Set node version to 24
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24

- name: Install deps
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
- run: pnpm i
- run: pnpm exec playwright install chromium
Loading