mirror of
https://github.com/longbridge/developers.git
synced 2026-09-19 03:34:09 +08:00
d89e74990f
Non-grid slice split out of #1204 so it can ship independently (grid trading is blocked on the gateway). ## Changes - **Changelog & CLI release notes** (`en` / `zh-CN` / `zh-HK`) — a 2026-08-14 `CLI v0.27.0` entry documenting: - **`agent` commands (A2A)** — `workspace list`, `agent list`, streaming `agent chat` / `agent continue` (longbridge/longbridge-terminal#280) - **`acp` runtime** — `longbridge acp` exposes the Longbridge AI agent over the Agent Client Protocol, with Codex / Claude adapter presets (longbridge/longbridge-terminal#282) - **CI** — raise the docs build Node heap to 14GB (`package.json` + `build.yml` + `canary.yml`). ## Not included Grid trading docs (API reference, CLI `grid` page, SDK examples, push event, MCP tools) stay in #1204 until the gateway is live. Refs: longbridge/longbridge-terminal#280, longbridge/longbridge-terminal#282
33 lines
602 B
YAML
33 lines
602 B
YAML
name: Build
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "!main"
|
|
- "!canary"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Test
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- name: Build for canary
|
|
run: |
|
|
bun run build:canary
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=14336 --expose-gc
|