fix(tui): harden the interactive terminal experience

This commit is contained in:
Xubin Ren
2026-08-17 20:56:10 +08:00
parent 5feb21543c
commit 4f12e15237
8 changed files with 1454 additions and 216 deletions
+12 -2
View File
@@ -180,9 +180,19 @@ jobs:
run: bun run build
tui:
name: Terminal UI
runs-on: ubuntu-latest
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- name: Terminal UI
os: ubuntu-latest
- name: Terminal UI (macOS)
os: macos-latest
- name: Terminal UI (Windows)
os: windows-latest
steps:
- uses: actions/checkout@v4