Skip to content

Fix: Add Vitest config to vite.config.js #5

Fix: Add Vitest config to vite.config.js

Fix: Add Vitest config to vite.config.js #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: TypeScript check
run: npm run typecheck
- name: Tests
run: npm test
- name: Build
run: npm run build