Skip to content

feat(desktop): publish Windows, Linux, and macOS releases #104

feat(desktop): publish Windows, Linux, and macOS releases

feat(desktop): publish Windows, Linux, and macOS releases #104

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
checks:
name: Typecheck and unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Unit tests
run: npm test