ci(main): add documentation validation workflow
ci / markdown (push) Canceled after 0s

This commit is contained in:
Story Crater Bot
2026-08-21 21:23:39 -07:00
parent 9d28b63ff2
commit 570d11fe63
+20
View File
@@ -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"