Skip to content

change daily job to process latest events #1495

change daily job to process latest events

change daily job to process latest events #1495

name: SonarCloud Code Analysis
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install node packages
run: npm ci
- name: Generate coverage report
run: npm run test:coverage
- 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 }}