Skip to content

[integrations] Smart ingest edge function #48

[integrations] Smart ingest edge function

[integrations] Smart ingest edge function #48

Workflow file for this run

name: Markdown Lint
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
paths:
- '**/*.md'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout PR head safely
uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.pull_request.number }}/head
fetch-depth: 1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install markdownlint-cli2
run: npm install --global markdownlint-cli2
- name: Run markdownlint
run: markdownlint-cli2 --config .github/.markdownlint.jsonc "**/*.md" "#node_modules"