Skip to content

Bump @vitejs/plugin-react from 5.1.3 to 5.1.4 in the vite group #23

Bump @vitejs/plugin-react from 5.1.3 to 5.1.4 in the vite group

Bump @vitejs/plugin-react from 5.1.3 to 5.1.4 in the vite group #23

Workflow file for this run

name: PR workflow
on:
pull_request:
branches:
- master
env:
CI: true
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Linting
run: npm run lint
- name: Run tests
run: npm run test