Skip to content

Add pdf from images tool. Closes #69 #11

Add pdf from images tool. Closes #69

Add pdf from images tool. Closes #69 #11

Workflow file for this run

# 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