Skip to content

Commit

Permalink
Refactor CI pipeline to include SonarCloud configuration and update S…
Browse files Browse the repository at this point in the history
…onarCloud action
  • Loading branch information
JJDSNT committed Sep 16, 2024
1 parent b4178f5 commit e4bfe7d
Showing 1 changed file with 12 additions and 29 deletions.
41 changes: 12 additions & 29 deletions .github/workflows/ci-test-coverage-pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,20 @@
name: CI Pipeline

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main

types: [opened, synchronize, reopened]
jobs:
build:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: yarn install

- name: Run tests with coverage
run: yarn vitest --coverage

- name: SonarCloud Scan
uses: SonarSource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }}
-Dsonar.organization=${{ secrets.SONAR_ORGANIZATION }}
-Dsonar.javascript.lcov.reportPaths=coverage/lcov-report/lcov.info
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 comments on commit e4bfe7d

Please sign in to comment.