diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37dfb31e..bfab707d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: # run: npm run test:cov - name: Linter - run: yarn eslint . --format json --output-file reports/tslint-report.json + run: yarn eslint . --format json --output-file reports/eslint-report.json - name: Test and coverage run: yarn jest --coverage diff --git a/sonar-project.properties b/sonar-project.properties index 494982d6..ef2759be 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -19,4 +19,4 @@ sonar.junit.reportPaths=junit.xml sonar.tests=src sonar.test.inclusions=**/*.spec.ts,**/*.spec.tsx,**/*.spec.js,**/*.test.ts,**/*.test.tsx sonar.testExecutionReportPaths=reports/sonar-report.xml -sonar.typescript.tslint.reportPaths=reports/tslint-report.json +sonar.typescript.eslint.reportPaths=reports/eslint-report.json