-
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: include addons-napi in linter #16181
Conversation
Currently test/addons-napi files are not being included in the lint processing. This commit adds them.
vcbuild.bat
Outdated
@@ -502,6 +502,9 @@ if %errorlevel% equ 0 goto exit | |||
echo %1 | findstr /r /c:"test\\addons\\[0-9].*_.*\.cc" | |||
if %errorlevel% equ 0 goto exit | |||
|
|||
echo %1 | findstr /c:"test\\addons-napi\common.h" |
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.
Shouldn't that be "test\\addons-napi\\common.h"
? (Note the second double slash.)
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.
Oh yes I should, sorry missed that. I'll update. Thanks
test/windows-fanned unstable report looks unrelatedChecking ^not ok
c:\workspace\node-test-binary-windows\test.tap:
not ok 468 inspector/test-bindings # TODO : Fix flaky test
not ok 469 inspector/test-debug-end # TODO : Fix flaky test
Build step 'Jenkins Text Finder' changed build result to UNSTABLE
Notifying upstream projects of job completion
Finished: UNSTABLE |
Currently test/addons-napi files are not being included in the lint processing. This commit adds them. PR-URL: nodejs#16181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Landed in 7832e69 |
Currently test/addons-napi files are not being included in the lint processing. This commit adds them. PR-URL: #16181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Currently test/addons-napi files are not being included in the lint processing. This commit adds them. PR-URL: nodejs/node#16181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Currently test/addons-napi files are not being included in the lint
processing. This commit adds them.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
build, windows