From 304d5188b83eb741d987a7675a1e8a13277b2100 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Sat, 25 Oct 2025 12:33:14 +0200 Subject: [PATCH] Added type checking and linting to workflow --- .github/workflows/sonar.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 73a275a..8f00eac 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -25,9 +25,12 @@ jobs: cache: "npm" - name: Install dependencies run: npm ci + - name: Type checking and linting + run: | + npm run type-check && + npm run lint - name: Run tests and generate coverage run: npm run coverage - continue-on-error: true env: CI: true - name: SonarQube Scan