Skip to content

feat: add public usage stats endpoint with OG image generation #1431

feat: add public usage stats endpoint with OG image generation

feat: add public usage stats endpoint with OG image generation #1431

Workflow file for this run

name: CI
on:
pull_request:
branches: ["*"]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.2.14"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint and format check
run: bun run check
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun run test:isolated
- name: DB Check
run: bun run --cwd apps/web db:check