chore(deps): update dependency @types/node to v24.10.4 #1970
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 scanner | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| sonar: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Fetch PR | |
| if: contains(github.ref, 'pull') | |
| run: | | |
| git fetch origin ${{ github.event.pull_request.head.sha }} | |
| git checkout ${{ github.event.pull_request.head.sha }} | |
| - name: SonarQube Scan | |
| uses: tradeshift/actions-sonarqube@v2 | |
| with: | |
| ca-cert: ${{ secrets.MTLS_CACERT }} | |
| client-cert: ${{ secrets.MTLS_CERT }} | |
| client-key: ${{ secrets.MTLS_KEY }} | |
| token: ${{ secrets.SONAR_TOKEN }} |