Skip to content

Commit c44f2b3

Browse files
author
Jakub Jirous
committed
sonar cloud coverage
sonar cloud coverage sonar cloud coverage
1 parent 9124575 commit c44f2b3

File tree

11 files changed

+55
-48
lines changed

11 files changed

+55
-48
lines changed

.github/workflows/sonarcloud.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "SonarCloud"
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
7+
pull_request:
8+
branches: ["main"]
9+
10+
workflow_dispatch:
11+
12+
permissions:
13+
pull-requests: read # allows SonarCloud to decorate PRs with analysis results
14+
15+
jobs:
16+
sonarcloud:
17+
name: "SonarCloud Analysis"
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- uses: actions/checkout@v3
22+
with:
23+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
24+
25+
- name: "Use Node.js ${{ matrix.node-version }}"
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
30+
- name: "Install dependencies"
31+
run: npm install -g yarn
32+
- run: yarn
33+
34+
- name: "Generate test coverage report"
35+
run: yarn test:cov
36+
37+
- name: "SonarCloud Scan"
38+
uses: SonarSource/sonarcloud-github-action@master
39+
env:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information
41+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret)

.github/workflows/testing.yml

-39
This file was deleted.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@
5757
"scripts": {
5858
"build": "tsc",
5959
"test": "jest",
60-
"test-coverage": "jest --coverage"
60+
"test:w": "jest --watch",
61+
"test:wa": "jest --watchAll",
62+
"test:cov": "jest --coverage"
6163
},
6264
"keywords": [
6365
"typescript",

sonar-project.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ sonar.organization=jakubjirous
66
#sonar.projectVersion=1.0
77

88
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
9-
#sonar.sources=.
9+
sonar.sources=src/
1010

1111
# Encoding of the source code. Default is default system encoding
1212
#sonar.sourceEncoding=UTF-8
13+
14+
sonar.coverage.exclusions=src/**/test/**/*
15+
sonar.javascript.lcov.reportPaths=./coverage/lcov.info

src/arcade/intro/01-add/add.test.ts src/arcade/intro/01-add/test/add.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { add } from "./add";
1+
import { add } from "../add";
22

33
type FirstArg = number;
44
type SecondArg = number;

src/arcade/intro/02-century-from-year/century-from-year.test.ts src/arcade/intro/02-century-from-year/test/century-from-year.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { centuryFromYear } from "./century-from-year";
1+
import { centuryFromYear } from "../century-from-year";
22

33
type FirstArg = number;
44
type ExpectedResult = number;

src/arcade/intro/03-check-palindrome/check-palindrome.test.ts src/arcade/intro/03-check-palindrome/test/check-palindrome.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { checkPalindrome } from "./check-palindrome";
1+
import { checkPalindrome } from "../check-palindrome";
22

33
type FirstArg = string;
44
type ExpectedResult = boolean;

src/arcade/intro/04-adjacent-elements-product/adjacent-elements-product.test.ts src/arcade/intro/04-adjacent-elements-product/test/adjacent-elements-product.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { adjacentElementsProduct } from "./adjacent-elements-product";
1+
import { adjacentElementsProduct } from "../adjacent-elements-product";
22

33
type FirstArg = number[];
44
type ExpectedResult = number;

src/arcade/intro/05-shape-area/shape-area.test.ts src/arcade/intro/05-shape-area/test/shape-area.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { shapeArea } from "./shape-area";
1+
import { shapeArea } from "../shape-area";
22

33
type FirstArg = number;
44
type ExpectedResult = number;

src/arcade/intro/06-make-array-consecutive/make-array-consecutive.test.ts src/arcade/intro/06-make-array-consecutive/test/make-array-consecutive.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { makeArrayConsecutive } from "./make-array-consecutive";
1+
import { makeArrayConsecutive } from "../make-array-consecutive";
22

33
type FirstArg = number[];
44
type ExpectedResult = number;

src/arcade/intro/07-almost-increasing-sequence/almost-increasing-sequence.test.ts src/arcade/intro/07-almost-increasing-sequence/test/almost-increasing-sequence.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { almostIncreasingSequence } from "./almost-increasing-sequence";
1+
import { almostIncreasingSequence } from "../almost-increasing-sequence";
22

33
type FirstArg = number[];
44
type ExpectedResult = boolean;

0 commit comments

Comments
 (0)