test: ensure subcollections use TransactionRepository inside transactions #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SonarCloud | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
sonarcloud-code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Disabling shallow clone to improve relevancy of reporting | |
- name: SonarCloud Scan | |
uses: sonarsource/[email protected] # Use the latest version from the marketplace | |
with: | |
args: > | |
-Dsonar.organization=elersong | |
-Dsonar.projectKey=elersong_fireorm24 | |
-Dsonar.coverage.exclusions=**/*.spec.* | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |