Skip to content

Bump vite from 4.5.2 to 4.5.3 #179

Bump vite from 4.5.2 to 4.5.3

Bump vite from 4.5.2 to 4.5.3 #179

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: npm install
run: npm ci
- name: check code style
run: npm run lint
- name: run type checks
run: npm run type-check
- name: run tests
run: npm run test
- name: test build process
run: npm run build