-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (40 loc) · 1.09 KB
/
Sonar.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Sonar
on: push
jobs:
Code-Quality:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install c8
run: yarn global add c8
- name: Install dependencies
run: yarn
working-directory: core
- name: Build core
run: yarn build
working-directory: core
- name: Get core code coverage
run: c8 -r lcov yarn test -s
working-directory: core
- name: Install documentation dependencies
run: yarn
working-directory: tsdoc
- name: Build documentation
run: yarn build
working-directory: tsdoc
- name: Get documentation code coverage
run: c8 -r lcov yarn test -s
working-directory: tsdoc
- name: SonarCloud Analysis
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}