Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add GH action markdown linting for spec file #291

Draft
wants to merge 1 commit into
base: v1.0-dev
Choose a base branch
from

Conversation

jeremyfiel
Copy link
Contributor

@jeremyfiel jeremyfiel commented Nov 25, 2024

Adds a Github action to validate the markdown for the spec files

@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch 2 times, most recently from 9756ee2 to 38a9adc Compare November 26, 2024 15:13
@jeremyfiel jeremyfiel changed the title feat: add GH action markdown linting for spec file feat: add GH action markdown linting for spec file and schema readme Nov 26, 2024
@frankkilcommins
Copy link
Collaborator

@jeremyfiel I'm assuming we expect that the validate-markdown will pass here?

@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch from 71e7bbf to 2d30591 Compare December 17, 2024 19:08
@jeremyfiel jeremyfiel changed the base branch from v1.0.0-dev to v1.0-dev December 17, 2024 19:09
@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch 2 times, most recently from 3d7a527 to df73a7f Compare December 17, 2024 19:25
@jeremyfiel jeremyfiel changed the title feat: add GH action markdown linting for spec file and schema readme feat: add GH action markdown linting for spec file Dec 17, 2024
@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch from df73a7f to a049e18 Compare December 17, 2024 19:39
@jeremyfiel
Copy link
Contributor Author

jeremyfiel commented Dec 17, 2024

ok, this should be ready! that was more difficult than it needed to be. lol

EDIT: I also wonder if the workflow should use the format-markdown.sh script rather than running npx directly. If no file is found to lint, the npx will fail execution.

@jeremyfiel jeremyfiel requested a review from ralfhandl December 17, 2024 19:40
@frankkilcommins
Copy link
Collaborator

@jeremyfiel 1.0.1 changes have been merged into v1.0-dev. Can you merge in latest / rebase and we'll get this PR included?

@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch 4 times, most recently from 9c2879d to 3ca1783 Compare December 20, 2024 18:59
@jeremyfiel
Copy link
Contributor Author

jeremyfiel commented Dec 20, 2024

not sure why this glob isn't working correctly. it should ignore v1.0.0 and not throw the linting errors.

any help from someone else is appreciated

- name: Lint markdown
      run: npx --yes markdownlint-cli --config .markdownlint.yaml versions/1.0.[^0].md versions/1.[1-9].*.md versions/2.*.md

it seems to work just fine from the package.json script.

If i change the file name to 1.1.0 so it's a valid file to lint, i get the expected output

versions/1.1.0.md 580ms
versions/1.1.0.md:3 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h4]
...

If i change it back to 1.0.0, the file is not recognized, as expected

> bash ./scripts/format-markdown.sh versions/1.0.[^0].md versions/1.[1-9].*.md versions/2.*.md

No matching file found: versions/1.0.[^0].md
No matching file found: versions/1.[1-9].*.md
No matching file found: versions/2.*.md

appears changing the run command to run: npm run format-markdown from the package.json file fixes it hides it.

no idea how to fix this.. it works great on my codespace, but github actions seems to have different behavior with the glob pattern and it still picks up the v1.0.0 pattern.

I also split the jobs into separate runs. It was misleading to name the job mdv while it's running mdv and markdown-cli in the same job

@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch from 3ca1783 to 52fd2f8 Compare December 20, 2024 19:06
* specification file
* add separate job for markdownlint-cli
@jeremyfiel jeremyfiel force-pushed the feat/markdown-lint-github-action branch from 52fd2f8 to 094faa8 Compare December 20, 2024 19:12
@jeremyfiel jeremyfiel marked this pull request as draft December 20, 2024 19:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants