mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 12:55:09 +00:00
* feat: added code and graph gen apis * feat: added code and graph gen apis * feat: added code and graph gen apis * fix: abort execution fixed * fix: added if abort execution null very edge case * chore: added agent sdk stream in code execution stream * chore: resolved comments * ci: fix issue with typecheck action * fix: remove llmconfig param * chore: added codegen as env var only * chore: refactor server rpc types (#210) * chore: refactor server rpc types * chore: refactor server rpc types * chore: refactor server rpc types --------- Co-authored-by: Dani Akash <DaniAkash@users.noreply.github.com>
50 lines
929 B
YAML
50 lines
929 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 install
|
|
|
|
- name: Build Agent SDK package
|
|
run: bun run build:agent-sdk
|
|
|
|
- name: Run Typecheck
|
|
run: bun run typecheck
|