ci: añade workflow de validación de Markdown#3
Merged
Conversation
- .github/workflows/markdown-lint.yml: valida formato Markdown en push/PR con markdownlint-cli2 (solo afecta a este repo; los workflows no se heredan) - .markdownlint.jsonc: config adaptada a nuestro estilo (HTML inline, tablas compactas, pies en cursiva permitidos) - Corrige formato real en CONTRIBUTING.md (fences) y PULL_REQUEST_TEMPLATE.md (línea en blanco duplicada) para pasar el lint en verde
JonatanGhub
marked this pull request as ready for review
May 30, 2026 07:59
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🇪🇸 Qué hace este PR
Añade un workflow de CI que valida el formato de todos los Markdown del repo en cada push y PR.
Cambios
.github/workflows/markdown-lint.yml— corremarkdownlint-cli2sobre**/*.mden push, pull_request y manualmente (workflow_dispatch). Permisos mínimos (contents: read)..markdownlint.jsonc— config adaptada a nuestro estilo: permite HTML inline (banners, badges), tablas compactas, pies en cursiva y encabezados repetidos entre secciones.CONTRIBUTING.md: líneas en blanco alrededor de bloques de código + lenguaje en el fence..github/PULL_REQUEST_TEMPLATE.md: línea en blanco duplicada.✅ Verificado localmente: 0 errores en los 8 archivos Markdown.
🇬🇧 Summary
Adds a CI workflow that lints all Markdown on push/PR using
markdownlint-cli2, with a config tuned to our style (inline HTML, compact tables). Fixes real formatting issues inCONTRIBUTING.mdand the PR template so the lint passes green. Note: workflows are not inherited by other org repos — this only lints this repo.https://claude.ai/code/session_014kQVFHWtFpvp4AA3PqJE2E
Generated by Claude Code