feat: Add YNAB budget selector to resolve multi-budget users #59
Workflow file for this run
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: Documentation Build Check | |
| # Verify docs build successfully on main branch to prevent bitrot | |
| # This does NOT deploy - deployment only happens from stable branch | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| - '.github/workflows/docs-build-check.yml' | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system mkdocs-material mkdocs-material-extensions | |
| npm install -g markdownlint-cli | |
| - name: Check for arrow-based pseudo-lists | |
| run: | | |
| .github/scripts/check-arrow-lists.sh | |
| - name: Lint markdown | |
| run: | | |
| markdownlint --config .markdownlint.json README.md 'docs/**/*.md' | |
| - name: Build documentation (no deploy) | |
| run: | | |
| mkdocs build --strict | |
| - name: Summary | |
| run: | | |
| echo "✅ Documentation builds successfully" >> $GITHUB_STEP_SUMMARY | |
| echo "📁 Built site is in site/ directory (not deployed)" >> $GITHUB_STEP_SUMMARY | |
| echo "ℹ️ Deployment only happens from stable branch" >> $GITHUB_STEP_SUMMARY |