Skip to content

Add Convex

Add Convex #24

Workflow file for this run

name: PR Review
on:
pull_request:
branches: ['main']
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install
validate:
name: Validate
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install
- name: Run Biome Check
uses: mongolyy/reviewdog-action-biome@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
- name: Run type check
run: pnpm typecheck
- name: Check Links
uses: lycheeverse/lychee-action@v2.2.0
with:
args: --config ./lychee.toml --verbose --no-progress .
fail: true