+2
-1
.github/PULL_REQUEST_TEMPLATE.md
+2
-1
.github/PULL_REQUEST_TEMPLATE.md
···
22
22
<!--
23
23
ATTENTION
24
24
Please follow this check list to ensure that you've followed all items before opening this PR
25
+
You can check the items by adding an `x` between the brackets, like this: `[x]`
25
26
-->
26
27
27
28
- [ ] I have read the [Contributing Guidelines](https://github.com/nodejs/nodejs.org/blob/main/CONTRIBUTING.md) and made commit messages that follow the guideline.
28
-
- [ ] I have run `npx turbo lint` to ensure the code follows the style guide. And run `npx turbo lint:fix` to fix the style errors if necessary.
29
29
- [ ] I have run `npx turbo format` to ensure the code follows the style guide.
30
30
- [ ] I have run `npx turbo test` to check if all tests are passing.
31
+
- [ ] I have run `npx turbo build` to check if the website builds without errors.
31
32
- [ ] I've covered new added functionality with unit tests if necessary.