mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-19 11:31:03 +00:00
* feat: new onboarding flow * feat: co-ordinate the sign in and import hints * fix: ux on step one * fix: make custom option friendlier * feat: added required fields * feat: setup step two redirection * fix: remove copy url button * feat: store profile info from onboarding * feat: sync onboarding profile to api * feat: show confetti when the onboarding completes * fix: change the options in onboarding demo * feat: setup missing analytics events * fix: lint issues * ci: fix typescript error * fix: sign in hint
50 lines
921 B
YAML
50 lines
921 B
YAML
name: Code Quality
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
biome:
|
|
name: runner / Biome
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup Biome
|
|
uses: biomejs/setup-biome@v2
|
|
with:
|
|
version: latest
|
|
|
|
- name: Run Biome
|
|
run: biome ci .
|
|
|
|
typecheck:
|
|
name: runner / Typecheck
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Install dependencies
|
|
run: bun ci
|
|
|
|
- name: Run codegen
|
|
run: bun run --cwd apps/agent codegen
|
|
|
|
- name: Run Typecheck
|
|
run: bun run typecheck
|