Skip to content

feat: add RAG pipeline components and multi-step pipeline #202

feat: add RAG pipeline components and multi-step pipeline

feat: add RAG pipeline components and multi-step pipeline #202

Workflow file for this run

---
name: Markdown Lint
on:
pull_request:
paths:
- '**/*.md'
- '.markdownlint.json'
- '.github/workflows/markdown-lint.yml'
push:
jobs:
markdown-lint:
name: markdown-lint
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: "20"
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli@0.39.0
- name: Determine changed Markdown files
id: changed-markdown
uses: ./.github/actions/detect-changed-assets
with:
filter: '\.md$'
skip-deleted-files: true
- name: Run markdownlint (changed files)
if: steps.changed-markdown.outputs.filtered-changed-files != ''
env:
CHANGED_FILES: ${{ steps.changed-markdown.outputs.filtered-changed-files }}
run: |
markdownlint -c .markdownlint.json -- $CHANGED_FILES