Skip to content

feat: integrate Better Auth with Convex for user authentication and session management #9

feat: integrate Better Auth with Convex for user authentication and session management

feat: integrate Better Auth with Convex for user authentication and session management #9

Workflow file for this run

name: Nextblog CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# This cancels previous runs if you push again to the same PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Format Check
run: pnpm run format:check
- name: Run Lint
run: pnpm run lint
- name: Type Check
run: pnpm exec tsc --noEmit
- name: Build Project
run: pnpm run build