Skip to content

feat(ui): add Card, Select, Checkbox, and Badge primitives #114

feat(ui): add Card, Select, Checkbox, and Badge primitives

feat(ui): add Card, Select, Checkbox, and Badge primitives #114

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- dev
jobs:
checks:
name: TypeScript and format
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: TypeScript check
run: npm run typecheck
- name: Format check
run: npm run format:check