refactor(openclaw): migrate onto ContainerAgentRuntime; collapse legacy ContainerRuntime #752
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Quality | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| paths: | |
| - "packages/browseros-agent/**" | |
| jobs: | |
| biome: | |
| name: runner / Biome | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: packages/browseros-agent | |
| 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 | |
| defaults: | |
| run: | |
| working-directory: packages/browseros-agent | |
| 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: Prepare wxt | |
| run: VITE_PUBLIC_BROWSEROS_API=http://localhost:3000 bun run --cwd apps/agent wxt prepare | |
| - name: Run codegen | |
| run: bun run --cwd apps/agent codegen | |
| - name: Run Typecheck | |
| run: bun run typecheck |