chore(deps): update github/codeql-action digest to 6a28655 #614
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 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 == 'workflow_dispatch' || | |
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name && github.event.sender.login != 'dependabot[bot]' || | |
github.event_name == 'push' && !contains(github.event.head_commit.message, '[ci skip]') | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Check out the source code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Set up Node.js environment | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: lts/* | |
registry-url: https://npm.pkg.github.com | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run postinstall scripts | |
run: npm rebuild && npm run prepare --if-present | |
- name: Run tests | |
run: npm run test:coverage | |
- name: Retrieve information from package.json | |
uses: myrotvorets/info-from-package-json-action@6a4b12839126aa2b858a12d89577fb7c5011e8f9 # 2.0.0 | |
id: ver | |
- name: Fix paths in test-report.xml | |
run: sed -i "s@$(pwd)@/github/workspace@g" test-report.xml | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@c25d2e7e3def96d0d1781000d3c429da22cd6252 # v2.0.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.projectName=${{ steps.ver.outputs.packageName }} | |
-Dsonar.projectVersion=${{ steps.ver.outputs.packageVersion }} | |
-Dsonar.links.homepage=${{ steps.ver.outputs.packageHomepage }} | |
-Dsonar.links.issue=${{ steps.ver.outputs.packageBugsUrl }} | |
-Dsonar.links.scm=${{ steps.ver.outputs.packageScmUrl }} | |
- name: Install codecov | |
run: npm i -g codecov | |
- name: Rebuild the project with sourcemaps | |
run: npm run build -- --sourcemap | |
- name: Run codecov | |
run: codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |