Skip to content

Updates npm dependencies according to npm audit #106

Updates npm dependencies according to npm audit

Updates npm dependencies according to npm audit #106

Workflow file for this run

name: Code Coverage
on:
pull_request:
branches:
- master
types: [opened, synchronize]
jobs:
test-coverage:
name: Upload Coverage to Sonarqube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install node modules
run: npm ci
- name: Build coverage report
run: npm run coverage
env:
CI: true
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
with:
args: >
-X