Skip to content

refactor(markdown): update TableMarkdownConfig to use any for seriali… #1257

refactor(markdown): update TableMarkdownConfig to use any for seriali…

refactor(markdown): update TableMarkdownConfig to use any for seriali… #1257

Workflow file for this run

name: Code quality
on:
push:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: "package.json"
- name: Install dependencies
run: bun install
- name: Format check
run: bun run format:check
- name: Lint check
run: bun run lint:check
- name: Type check
run: bun run check