Skip to content

Commit

Permalink
Update node version in the workflow from v16 -> v20 (#737)
Browse files Browse the repository at this point in the history
* Aiming to fix markdown-link-check by pushing up the nove version from v16 to v20

* Checking one file at a time with markdown-link-check and not all together to avoid a bug in the checker

---------

Co-authored-by: Michaela Iorga <[email protected]>
  • Loading branch information
iMichaela and Michaela Iorga authored Aug 24, 2024
1 parent bc7de4c commit 8717ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/config/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v20
2 changes: 1 addition & 1 deletion .github/workflows/workflow-validate-repo-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# this command will filter out any docs Markdown files, which are checked in a different job
git ls-files "*.md" -z | \
grep --null-data -v "${{ inputs.ignorePattern }}" | \
xargs -0 markdown-link-check -c "${{ inputs.markdownLinkCheckConfig }}" | \
xargs -0n1 markdown-link-check -c "${{ inputs.markdownLinkCheckConfig }}" | \
tee mlc_report.log
# Exit code of xargs and markdown-link-check, not git or grep or tee pipe elements
exit ${PIPESTATUS[2]}
Expand Down

0 comments on commit 8717ff4

Please sign in to comment.