Compare commits

..

No commits in common. "aa759d41b8168221dad17561e9d178b8531904a1" and "e9ce67219ca35de907aeaa3295c4afa5efd6870a" have entirely different histories.

5 changed files with 850 additions and 1000 deletions

View File

@ -14,7 +14,7 @@ jobs:
steps: steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with: with:
node-version: 20 node-version: 20
cache: "npm" cache: "npm"

View File

@ -0,0 +1,33 @@
on:
push:
branches:
- main
- dev
- "!renovate/**"
pull_request:
types: [opened, synchronize, reopened]
name: SonarQube Scan
jobs:
sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@1b442ee39ac3fa7c2acdd410208dcb2bcfaae6c4 # v4.1.0
env:
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
# Check the Quality Gate status.
- name: SonarQube Quality Gate check
uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 2
env:
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}

2
.gitignore vendored
View File

@ -34,5 +34,3 @@ yarn-error.log*
# typescript # typescript
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts next-env.d.ts
.turbo/

1782
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,27 +13,30 @@
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"cssnano": "^7.0.1", "cssnano": "^7.0.1",
"lucide-react": "^0.507.0", "lucide-react": "^0.468.0",
"next": "15.3.1", "next": "15.0.4",
"next-plausible": "^3.12.0", "next-plausible": "^3.12.0",
"postcss-flexbugs-fixes": "^5.0.2", "postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.0.0", "postcss-preset-env": "^10.0.0",
"react": "19.1.0", "react": "19.0.0",
"react-dom": "19.1.0", "react-dom": "19.0.0",
"sharp": "^0.34.0", "sharp": "^0.33.4",
"tailwind-merge": "^2.5.2", "tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7" "tailwindcss-animate": "^1.0.7"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "22.15.3", "@types/node": "22.10.1",
"@types/react": "19.1.2", "@types/react": "19.0.1",
"@types/react-dom": "19.1.3", "@types/react-dom": "19.0.1",
"eslint": "8.57.1", "eslint": "8.57.1",
"eslint-config-next": "15.3.1", "eslint-config-next": "15.0.4",
"postcss": "8.5.3", "postcss": "8.4.49",
"tailwindcss": "3.4.17", "tailwindcss": "3.4.16",
"turbo": "2.5.2", "turbo": "2.3.3",
"typescript": "5.8.3" "typescript": "5.7.2"
}, },
"packageManager": "npm@11.3.0" "overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
}
} }