Skip to content

docs: update message batch scheduling docs #9

docs: update message batch scheduling docs

docs: update message batch scheduling docs #9

Workflow file for this run

name: Portal checks
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
env:
CODECHAT_SOURCE_DOCS: ./source-docs
NEXT_PUBLIC_SITE_URL: http://localhost:3000
NEXT_PUBLIC_CODECHAT_API_URL: http://localhost:8084
jobs:
validate:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout portal
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 11.12.0
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Synchronize source documentation
run: pnpm sync:docs
- name: Generate webhook catalog and audit API reference
run: pnpm generate:webhooks && pnpm audit:api
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Validate OpenAPI
run: pnpm validate:openapi
- name: Unit and component tests
run: pnpm test
- name: Build
run: pnpm build
- name: Install Playwright Chromium
run: pnpm exec playwright install --with-deps chromium
- name: End-to-end tests
run: pnpm test:e2e