Skip to content

Fix stuck loading and drop in-preview editing #50

Fix stuck loading and drop in-preview editing

Fix stuck loading and drop in-preview editing #50

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Test (Node 22)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Format check
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Dead code check
run: pnpm knip
- name: Test
run: pnpm test
- name: Build
run: pnpm build