fix(zee): harden TUI recovery and provider model handling #928
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |