feat(daemon): add serial console reader and UI tab for serial logs; add version propagation and CI/release workflows

This commit is contained in:
2026-01-09 14:34:51 +00:00
parent 5234411c9d
commit 6dd6ead1c9
8 changed files with 262 additions and 7 deletions

26
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,26 @@
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v2.x
- name: Install pnpm
run: npm install -g pnpm
- name: Typecheck
run: pnpm run daemon:typecheck
- name: Bundle
run: pnpm run daemon:bundle