-
Notifications
You must be signed in to change notification settings - Fork 50
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
base: v1.0-dev
Are you sure you want to change the base?
feat: add GH action markdown linting for spec file #291
Conversation
99057e4
to
2e58a18
Compare
9756ee2
to
38a9adc
Compare
@jeremyfiel I'm assuming we expect that the validate-markdown will pass here? |
71e7bbf
to
2d30591
Compare
3d7a527
to
df73a7f
Compare
df73a7f
to
a049e18
Compare
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 |
@jeremyfiel |
9c2879d
to
3ca1783
Compare
not sure why this glob isn't working correctly. it should ignore 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 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 I also split the jobs into separate runs. It was misleading to name the job |
3ca1783
to
52fd2f8
Compare
* specification file * add separate job for markdownlint-cli
52fd2f8
to
094faa8
Compare
Adds a Github action to validate the markdown for the spec files