Skip to content

test: add unit tests #31

test: add unit tests

test: add unit tests #31

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- synchronize
jobs:
quality-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Electron rebuild
run: npm run electron-rebuild
- name: Type Check
run: npm run check-types
- name: Lint
run: npm run lint