Skip to content

v5.0.1 — Housekeeping: IPC modules, store cleanup, a11y, reduced-motion #71

v5.0.1 — Housekeeping: IPC modules, store cleanup, a11y, reduced-motion

v5.0.1 — Housekeeping: IPC modules, store cleanup, a11y, reduced-motion #71

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Format check
run: npm run format:check
- name: Test
run: npm test