Skip to content

chore: add changeset for app patch #316

chore: add changeset for app patch

chore: add changeset for app patch #316

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Type check
run: bun run check-types
- name: Build
run: bun run build
- name: Run unit tests
run: bun run test:unit
- name: Run E2E tests
run: bun run test:e2e