Skip to content

docs: update changelog and install #1

docs: update changelog and install

docs: update changelog and install #1

Workflow file for this run

name: release
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@v5
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Electron rebuild
run: npm run electron-rebuild
- name: Type Check
run: npm run type-check
- name: Lint
run: npm run lint
- name: Run Tests
run: npm test