From be73deddcca05fdbc4003c02f90ef7d423850bdf Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Tue, 26 Sep 2023 11:43:57 -0400 Subject: [PATCH] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index a7794301d0..36618437fa 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -33,7 +33,7 @@ Project maintainers have the right and responsibility to remove, edit, or reject 4. Clear web app localStorage and cookies before and after changes. 5. For frontend changes: - Install typescript globally: `npm i -g typescript`. - - Compile typescript before and after changes to check for introduced errors: `tsc --noEmit`. + - Compile typescript before and after changes to check for introduced errors: `cd client && tsc --noEmit`. 6. Run tests locally: - Backend unit tests: `npm run test:api` - Frontend unit tests: `npm run test:client`