chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.116.1 #5071
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 Analysis | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
env: | |
SONARSCANNER: "true" | |
jobs: | |
build: | |
name: SonarCloud Scan | |
runs-on: ubuntu-latest | |
if: | | |
github.event_name != 'pull_request' || | |
github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
steps: | |
- name: Check out the source code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Run SonarCloud analysis | |
uses: myrotvorets/composite-actions/node-sonarscan@master | |
with: | |
sonar-token: ${{ secrets.SONAR_TOKEN }} | |
registry-url: https://npm.pkg.github.com | |
test-script: 'test:coverage' | |
- name: Rebuild the project with sourcemaps | |
run: npm run build -- --sourcemap | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage/lcov.info |