28b0e7433e
The previous CI workflow was removed, leaving the agents repo with no CI. This restores markdownlint-based CI with a config that disables rules incompatible with agent prompt files (bare URLs, inline HTML, emphasis headings). Uses ARC runners and actions/checkout@v6. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
305 B
YAML
18 lines
305 B
YAML
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"
|