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