From 01b0bf1a3625c5cb866a6839b3c9b3bc2ec0dcd0 Mon Sep 17 00:00:00 2001 From: Zeger-Jan van de Weg Date: Sun, 17 Sep 2023 08:38:10 +0200 Subject: [PATCH] github: Request `npm run test` in PR template Due to the way grunt is installed, `grunt` might not work for the user locally. However, `npm run test` will succeed for them, as NPM knows where `grunt` is located to execute. --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 92a0abb8a..d673df676 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -30,5 +30,5 @@ the [forum](https://discourse.nodered.org) or - [ ] I have read the [contribution guidelines](https://github.com/node-red/node-red/blob/master/CONTRIBUTING.md) - [ ] For non-bugfix PRs, I have discussed this change on the forum/slack team. -- [ ] I have run `grunt` to verify the unit tests pass +- [ ] I have run `npm run test` to verify the unit tests pass - [ ] I have added suitable unit tests to cover the new/changed functionality