Skip to content

fix: make copyright year dynamic & fix security audit issues (#68) #68

fix: make copyright year dynamic & fix security audit issues (#68)

fix: make copyright year dynamic & fix security audit issues (#68) #68

Workflow file for this run

name: SonarQube Cloud Analysis
on:
push:
branches:
- main
- dev
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests with coverage
run: npm run test:coverage
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}