fix: restore CI workflow with markdownlint config #30

Merged
ghost merged 3 commits from fix/restore-agents-ci into main 2026-03-20 23:57:04 +00:00
2 changed files with 23 additions and 0 deletions
Showing only changes of commit 28b0e7433e - Show all commits
+17
View File
@@ -0,0 +1,17 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: runners-privilegedescalation
steps:
- uses: actions/checkout@v6
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v19
with:
globs: "**/*.md"
+6
View File
@@ -0,0 +1,6 @@
# Markdownlint configuration for the agents repo.
# Agent prompt files intentionally use bare URLs (curl commands),
# inline HTML (template variables), and emphasis-as-headings.
MD033: false # no-inline-html
MD034: false # no-bare-urls
MD036: false # no-emphasis-as-heading