Skip to content

fix(Draggable): defer captureGesture to first motion (A22) #149

fix(Draggable): defer captureGesture to first motion (A22)

fix(Draggable): defer captureGesture to first motion (A22) #149

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Typecheck · Lint · Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Build shared
run: pnpm --filter @yokai-tui/shared build
- name: Typecheck
run: pnpm -r typecheck
- name: Lint
run: pnpm -r lint
- name: Build renderer
run: pnpm --filter @yokai-tui/renderer build
- name: Test
run: pnpm test