Skip to content

chore: bump Vite version to 5.3.1 #66

chore: bump Vite version to 5.3.1

chore: bump Vite version to 5.3.1 #66

Workflow file for this run

name: Standard
on: [pull_request, push, workflow_dispatch]
jobs:
test:
name: Test
strategy:
matrix:
node-version: [18, 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