-
Notifications
You must be signed in to change notification settings - Fork 30k
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
build,win: fix problems with format-md #52161
build,win: fix problems with format-md #52161
Conversation
f94706f
to
5a6fea5
Compare
Initially, this PR failed because it converted the line breaks of all |
I've let this run through the node-test-linter in CI to ensure it's good. The run passed. |
It's ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RSLGTM
I see CI has passed. Is there something else I can help with this to move forward? |
Commit Queue failed- Loading data for nodejs/node/pull/52161 ✔ Done loading data for nodejs/node/pull/52161 ----------------------------------- PR info ------------------------------------ Title build,win: fix problems with format-md (#52161) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch huseyinacacak-janea:huseyin-12044-fix-issues-in-linter-and-tests-on-windows -> nodejs:main Labels windows, build, meta, needs-ci, commit-queue-rebase Commits 2 - doc: add .gitattributes for md files - build,win: fix problems with format-md Committers 1 - Hüseyin Açacak PR-URL: https://github.com/nodejs/node/pull/52161 Reviewed-By: Luigi Pinca ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/52161 Reviewed-By: Luigi Pinca -------------------------------------------------------------------------------- ℹ This PR was created on Wed, 20 Mar 2024 09:29:58 GMT ✔ Approvals: 1 ✔ - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/52161#pullrequestreview-1970052472 ✘ Last GitHub CI failed ℹ Last Full PR CI on 2024-04-17T08:46:58Z: https://ci.nodejs.org/job/node-test-pull-request/58454/ - Querying data for job/node-test-pull-request/58454/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/8784247836 |
PR-URL: #52161 Reviewed-By: Luigi Pinca <[email protected]>
Landed in bed1fa9 |
PR-URL: #52161 Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: nodejs#52161 Reviewed-By: Luigi Pinca <[email protected]>
The command
vcbuild lint
was experiencing failures on Windows. The appropriate fix would have been to executevcbuild format-md
, but despite its availability, it wasn't possible to execute it. This PR enablesvcbuild format-md
to be executed. Furthermore, a validation has been incorporated into.gitattributes
to verify that.md
files utilize LF as their line endings.