Skip to content

Add tsc to build and update tsconfig #34

Add tsc to build and update tsconfig

Add tsc to build and update tsconfig #34

Workflow file for this run

name: Run Status Checks
on:
push:
branches:
- '**'
- '!main'
- '!dev'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.11.0'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Vitest tests
run: npm run test -- --run --coverage=false