Skip to content

chore(deps-dev): bump @vitejs/plugin-react from 5.2.0 to 6.0.0 #9

chore(deps-dev): bump @vitejs/plugin-react from 5.2.0 to 6.0.0

chore(deps-dev): bump @vitejs/plugin-react from 5.2.0 to 6.0.0 #9

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
- name: Type check
run: npm run build -- --noEmit || npx tsc --noEmit || echo "No type check script"
- name: Build
run: npm run build || echo "No build script"