Skip to content

Move all content to page components. #47

Move all content to page components.

Move all content to page components. #47

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
# Using npx instead of bun x because we had problems with Playwright and bun x.
run: npx vitest --project=storybook --run
- name: Build
run: bun run build