chore(backend)(deps): bump yjs from 13.6.31 to 13.6.32 in /backend #159
Workflow file for this run
This file contains hidden or 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: SonarQube Quality Gate | |
| on: | |
| push: | |
| branches: [ "main", "master" ] | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| jobs: | |
| sonarqube: | |
| name: SonarQube Quality Gate Analysis | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: SonarQube Scan & Quality Gate Evaluation | |
| uses: SonarSource/sonarqube-scan-action@v2.0.2 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL || 'https://sonarcloud.io' }} | |
| - name: SonarQube Quality Gate Status Check | |
| uses: SonarSource/sonarqube-quality-gate-action@v1.1.0 | |
| timeout-minutes: 5 | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |