Skip to content

chore: bump Vite version to 5.4.6 #165

chore: bump Vite version to 5.4.6

chore: bump Vite version to 5.4.6 #165

Workflow file for this run

name: Standard
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Test
strategy:
matrix:
node-version: [20, 22]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run type:check
- name: Check format
run: npm run format:check
- name: Check lint
run: npm run lint:check
- name: Test
run: npm run test