web: add pagination #48
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: PR:Supabase | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| paths: | |
| - ".github/workflows/pr-supabase.yml" | |
| - "deno.lock" | |
| - "supabase/**" | |
| - "!**.md" | |
| workflow_dispatch: | |
| permissions: | |
| pull-requests: write | |
| env: | |
| PROJECT_ID: xxx | |
| PROJECT_PUBLISHABLE_KEY: yyy | |
| jobs: | |
| qa: | |
| name: "QA" | |
| environment: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - run: deno fmt --check supabase/* | |
| - run: deno lint supabase/* | |
| - run: deno task tests --reload | |
| - name: "Generate cron jobs" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: cron_jobs.sql | |
| path: cron_jobs.sql | |
| retention-days: 1 | |
| - name: "Check Outdated Packages" | |
| uses: ./.github/action/deno-outdated | |
| id: outdated_supabase | |
| with: | |
| directory: ./supabase/functions | |
| title: "Deno Outdated - Supabase" |