Closed
Description
In the PULL_REQUEST_TEMPLATE.md
file, we ask contributors (who are now submitting a PR) to test the codebase using the command make -j4 test
, employing 4 jobs. (https://github.com/nodejs/node/blob/master/.github/PULL_REQUEST_TEMPLATE.md#checklist)
On the other hand, the BUILDING.md
file, we use make test
only, which uses a single job, IIRC. (https://github.com/nodejs/node/blob/master/BUILDING.md#running-tests)
This might not be a major issue per-se, but we could make it more consistent.