mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 13:56:48 +00:00
16 lines
290 B
YAML
16 lines
290 B
YAML
name: Markdown Check
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
markdown-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: List markdown files
|
|
run: |
|
|
find . -type f \( -name "*.md" -o -name "VERSION" \) | sort
|