Skip to content

Merge pull request #53 from homanp/cursor/fix-widget-placement #96

Merge pull request #53 from homanp/cursor/fix-widget-placement

Merge pull request #53 from homanp/cursor/fix-widget-placement #96

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx eslint --quiet src/
typecheck:
name: Typecheck
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx tsc --noEmit
test:
name: Test
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm install
- run: npx vitest run