Skip to content

Update @vitejs/plugin-react 4.2.1 → 4.3.0 (minor) #1120

Update @vitejs/plugin-react 4.2.1 → 4.3.0 (minor)

Update @vitejs/plugin-react 4.2.1 → 4.3.0 (minor) #1120

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, reopened, labeled, synchronize]
jobs:
build:
name: Core Unit Tests node-${{ matrix.node_version }}, ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node_version: [20, 22]
include:
- os: macos-latest
node_version: 22
- os: windows-latest
node_version: 22
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- name: install
run: yarn install --immutable
- name: test
run: yarn test
- name: build
run: yarn build