Skip to content

Commit

Permalink
ci(sonar): update configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgrasset committed Nov 23, 2023
1 parent 15c3286 commit 7439804
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
-Dsonar.projectKey=louisgrasset_touitomamout
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
-Dsonar.sources=src
-Dsonar.exclusions=src/**/__tests__/**
-Dsonar.tests=src
-Dsonar.test.inclusions=src/**/__tests__/**
-Dsonar.exclusions=**/__tests__/**/*.*/
-Dsonar.test.inclusions=**/*.spec.ts
commitlint:
name: "Commitlint Validation"
Expand Down
2 changes: 1 addition & 1 deletion meta/testing/jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
collectCoverageFrom: ['src/**/*.ts'],
collectCoverageFrom: ["src/**/*.ts", "!**/__tests__/**/*"],
coveragePathIgnorePatterns : [
"<rootDir>/src/constants.ts",
"<rootDir>/src/index.ts"
Expand Down

0 comments on commit 7439804

Please sign in to comment.