Skip to content

Final end to end test and fixed #727

Final end to end test and fixed

Final end to end test and fixed #727

Workflow file for this run

name: Analysis
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install dependencies
run: npm ci
- name: Test and coverage
run: npm run test --coverage
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}