Skip to content

deps: bump @vitejs/plugin-react from 4.7.0 to 6.0.1 #117

deps: bump @vitejs/plugin-react from 4.7.0 to 6.0.1

deps: bump @vitejs/plugin-react from 4.7.0 to 6.0.1 #117

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build package types
run: pnpm run build:types
- name: Run linter
run: pnpm run lint
- name: Run type check
run: pnpm run type-check
- name: Run tests
run: pnpm test
- name: Build
run: pnpm run build