Skip to content

Commit cb75c18

Browse files
jeremyederclaude
andcommitted
fix: update CI to check for new documentation structure
Update ci.yml to check for docs/README.md instead of docs/quickstart.md and remove check for deleted docs/index.md. Add check for docs/adr/. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 04b5a8a commit cb75c18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
run: |
1919
# Verify patterns documentation exists
2020
test -d docs/patterns || { echo "Error: docs/patterns/ missing"; exit 1; }
21-
test -f docs/quickstart.md || { echo "Error: docs/quickstart.md missing"; exit 1; }
22-
test -f docs/index.md || { echo "Error: docs/index.md missing"; exit 1; }
21+
test -f docs/README.md || { echo "Error: docs/README.md missing"; exit 1; }
22+
test -d docs/adr || { echo "Error: docs/adr/ missing"; exit 1; }
2323
echo "All required documentation files present"

0 commit comments

Comments
 (0)