From 193256398b352ac709dfa2c7afdab8e27367c357 Mon Sep 17 00:00:00 2001 From: Augustin Mauroy Date: Sun, 3 Mar 2024 20:36:51 +0100 Subject: [PATCH] chore(pr-template): remove `lint` command and add `build` (#6415) chore(pr-template): remove `lint`command and add `build` --- .github/PULL_REQUEST_TEMPLATE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 28f873d6101a7..4e45488126dad 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -22,10 +22,11 @@ Please read the [Code of Conduct](https://github.com/nodejs/nodejs.org/blob/main - [ ] I have read the [Contributing Guidelines](https://github.com/nodejs/nodejs.org/blob/main/CONTRIBUTING.md) and made commit messages that follow the guideline. -- [ ] 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. - [ ] I have run `npx turbo format` to ensure the code follows the style guide. - [ ] I have run `npx turbo test` to check if all tests are passing. +- [ ] I have run `npx turbo build` to check if the website builds without errors. - [ ] I've covered new added functionality with unit tests if necessary.