Skip to content

Commit 787f0e3

Browse files
authored
adjust to sonar and workflows (#320)
* adjust to sonar * ignore push on dependabot branches
1 parent 8bbdcbc commit 787f0e3

7 files changed

+38
-6
lines changed

.github/workflows/generator.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Generator
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'dependabot/**'
6+
pull_request:
7+
branches:
8+
- '*'
39
permissions:
410
contents: read
511
jobs:

.github/workflows/test-integration-angular.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Test Integration Angular
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'dependabot/**'
6+
pull_request:
7+
branches:
8+
- '*'
39
env:
410
NODE_OPTIONS: --dns-result-order=ipv4first
511
jobs:

.github/workflows/test-integration-microservice.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Test Integration Microservice
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'dependabot/**'
6+
pull_request:
7+
branches:
8+
- '*'
39
env:
410
NODE_OPTIONS: --dns-result-order=ipv4first
511
jobs:

.github/workflows/test-integration-react.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Test Integration React
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'dependabot/**'
6+
pull_request:
7+
branches:
8+
- '*'
39
env:
410
NODE_OPTIONS: --dns-result-order=ipv4first
511
jobs:

.github/workflows/test-integration-vue.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: Test Integration Vue
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'dependabot/**'
6+
pull_request:
7+
branches:
8+
- '*'
39
env:
410
NODE_OPTIONS: --dns-result-order=ipv4first
511
jobs:

.scannerwork/.sonar_lock

Whitespace-only changes.

sonar-project.properties

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ sonar.projectVersion=2.0.0
44
sonar.organization=jhipster
55
sonar.host.url=https://sonarcloud.io
66
sonar.sources=generators
7-
sonar.tests=test
7+
sonar.sources.exclusions=generators/*.spec.js,generators/__snapshots/**
8+
sonar.tests=generators
9+
sonar.test.inclusions=generators/*.spec.js
810
sonar.javascript.lcov.reportPaths=coverage/lcov.info

0 commit comments

Comments
 (0)