Skip to content

feat: first public commit #1

feat: first public commit

feat: first public commit #1

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "20.11.1"
registry-url: "https://registry.npmjs.org"
- run: pnpm install
- run: pnpm typecheck
- run: pnpm biome:check
- run: pnpm test
- run: npx playwright install --with-deps
- run: pnpm storybook:test:ci