Skip to content

fix(zee): harden TUI recovery and provider model handling #928

fix(zee): harden TUI recovery and provider model handling

fix(zee): harden TUI recovery and provider model handling #928

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
secrets:
name: secret-scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: ./.github/actions/setup-bun
- name: Audit (high)
run: bash scripts/bun-audit-ci.sh
- name: Validate SKILL metadata
run: bash scripts/verify-skills.sh
- name: Typecheck
run: bun run --cwd packages/zee typecheck
- name: Test
run: bun run --cwd packages/zee test
env:
CI: true
timeout-minutes: 10