Skip to content

docs: add screenshots and demo video to README #268

docs: add screenshots and demo video to README

docs: add screenshots and demo video to README #268

Workflow file for this run

name: Build Test
on:
push:
branches:
- master
pull_request:
branches:
- master
- v3
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Run tests
run: npm test
- name: Build
run: npm run build