feat: harden first-time UX with init-time safety bootstrap #8
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| fast-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Check shell syntax | |
| run: bash -n loop.sh run.sh | |
| - name: Compile Python files | |
| run: python -m py_compile backlog_manager.py progress_window.py | |
| - name: Run happy-path fake CLI smoke test | |
| run: bash tests/e2e_pass_fake_cli.sh | |
| - name: Run rate-limit fake CLI smoke test | |
| run: bash tests/e2e_rate_limit_fake_cli.sh |