Add pdf from images tool. Closes #69 #11
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
| # Lightweight CI: no Git LFS, no bundled-bin staging (avoids LFS budget on every push/PR). | |
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| lfs: false | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Lint | |
| run: bun run lint | |
| - name: Typecheck | |
| run: bun run check | |
| - name: Smoke tests | |
| run: bun run test:smoke | |
| - name: Dev build (skip staging) | |
| env: | |
| PROMETHEUS_SKIP_STAGE_BINS: "1" | |
| GIT_LFS_SKIP_SMUDGE: "1" | |
| run: bun run build:dev |