Skip to content

feat: feishu_doc Markdown 富文本写入 #21

feat: feishu_doc Markdown 富文本写入

feat: feishu_doc Markdown 富文本写入 #21

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
concurrency:
group: ci-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Unit tests
run: npx vitest run --exclude='**/quality.test.ts' --exclude='**/integration.test.ts'