ci(main): add documentation validation workflow
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
markdown:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check markdown files exist
|
||||
run: |
|
||||
test -f DESIGN.md
|
||||
test -f README.md
|
||||
echo "✓ Documentation structure valid"
|
||||
Reference in New Issue
Block a user