feat: add public usage stats endpoint with OG image generation #1431
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: 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 |