Skip to content

feat(storybook): introduce Storybook UI #32

feat(storybook): introduce Storybook UI

feat(storybook): introduce Storybook UI #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
cache: true
- name: Install dependencies
run: bun install
- name: Install Playwright browsers
run: bun x playwright install --with-deps chromium
- name: Lint
run: bun run lint
- name: Typecheck
run: bun run typecheck
- name: Storybook tests
run: npx vitest --project=storybook
- name: Build
run: bun run build