The Node.js® Website

chore(pr-template): remove `lint` command and add `build` (#6415)

chore(pr-template): remove `lint`command and add `build`

authored by Augustin Mauroy and committed by GitHub 19325639 2f6f355b

Changed files
+2 -1
.github
+2 -1
.github/PULL_REQUEST_TEMPLATE.md
··· 22 <!-- 23 ATTENTION 24 Please follow this check list to ensure that you've followed all items before opening this PR 25 --> 26 27 - [ ] 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 - [ ] I have run `npx turbo format` to ensure the code follows the style guide. 30 - [ ] I have run `npx turbo test` to check if all tests are passing. 31 - [ ] I've covered new added functionality with unit tests if necessary.
··· 22 <!-- 23 ATTENTION 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]` 26 --> 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. 29 - [ ] I have run `npx turbo format` to ensure the code follows the style guide. 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. 32 - [ ] I've covered new added functionality with unit tests if necessary.