mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-09 20:51:22 +00:00
23fac03691
Move the codex-imagegen wrapper out of scripts/ into its own workspace package alongside baoyu-md, baoyu-chrome-cdp, and baoyu-fetch. Drop the bash shim — src/main.ts now carries a `#\!/usr/bin/env bun` shebang and serves as the sole entrypoint. Add scripts/sync-codex-imagegen.sh so skills/baoyu-image-gen/scripts/codex-imagegen/ can be regenerated from packages/baoyu-codex-imagegen/src/ for skill self-containment. Update CLAUDE.md, docs/codex-imagegen-backend.md, and the CI workflow paths accordingly.
39 lines
978 B
YAML
39 lines
978 B
YAML
name: codex-imagegen tests
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'packages/baoyu-codex-imagegen/**'
|
|
- '.github/workflows/codex-imagegen-tests.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'packages/baoyu-codex-imagegen/**'
|
|
- '.github/workflows/codex-imagegen-tests.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
unit-tests:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
|
|
- name: Show Bun version
|
|
run: bun --version
|
|
|
|
- name: Run unit tests
|
|
working-directory: packages/baoyu-codex-imagegen
|
|
run: bun test
|
|
|
|
- name: Bundle smoke test (catches import/syntax errors)
|
|
run: bun build --target=node packages/baoyu-codex-imagegen/src/main.ts --outfile /tmp/main-build.js
|
|
|
|
- name: Help output smoke test
|
|
run: bun packages/baoyu-codex-imagegen/src/main.ts --help
|