Migration to Forgejo

This commit is contained in:
Liviu Burcusel 2025-12-16 11:18:14 +01:00
parent 5e63a44677
commit 47a9a46592
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
6 changed files with 536 additions and 535 deletions

View file

@ -1,39 +0,0 @@
name: Sonar
permissions:
contents: read
pull-requests: write
on:
push:
branches:
- production
pull_request:
branches:
- production
types: [opened, synchronize, reopened]
jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Type checking and linting
run: |
npm run type-check &&
npm run lint
- name: Run tests and generate coverage
run: npm run coverage
env:
CI: true
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}