From d9f829b6086a4532fd68ce474e86023b9df85750 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Thu, 16 Oct 2025 18:22:27 +0800 Subject: [PATCH] Add frontend tests step to frontend lint workflow --- .github/workflows/lint.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 87fba20..a9721c3 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -58,7 +58,12 @@ jobs: cd web pnpm typecheck + - name: Running the frontend tests + run: | + cd web + node --test tests/*.test.ts + - name: Build frontend run: | cd web - pnpm build \ No newline at end of file + pnpm build