Create RUNBOOK.md for FX Streaming Data Pipeline #36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| markdown-lint: | |
| name: Markdown Lint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Install markdownlint-cli2 | |
| run: npm install -g markdownlint-cli2 | |
| - name: Run markdownlint (with custom config) | |
| run: | | |
| echo "🧹 Running markdownlint..." | |
| markdownlint-cli2 --config .markdownlint.jsonc "**/*.md" || echo "Lint warnings detected, review locally." | |
| - name: Report result | |
| if: always() | |
| run: echo "✅ Markdown Lint workflow completed" |