Skip to content

Add Vitest test suite (3 tests) #3

Add Vitest test suite (3 tests)

Add Vitest test suite (3 tests) #3

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