Skip to content

More and better unit tests #19

More and better unit tests

More and better unit tests #19

Workflow file for this run

name: Format Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
format-check:
name: Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run format check
run: npm run format:check