Compare commits
89 Commits
e9ce67219c
...
aa759d41b8
Author | SHA1 | Date | |
---|---|---|---|
aa759d41b8 | |||
11e2253317 | |||
f072fdd771 | |||
dd874cc762 | |||
01eacdb494 | |||
9200dd3e80 | |||
5374f393f0 | |||
824b0ab3f5 | |||
680cc0a165 | |||
f01d075dde | |||
f19379f88a | |||
8aba1e4dc9 | |||
a7e2ea2e8a | |||
42f4a3d19d | |||
bb246697db | |||
0c81a15bb0 | |||
d912528b6c | |||
fbaf794a50 | |||
ef881d6ffa | |||
b8c3538013 | |||
27438359b6 | |||
ad4ff247f5 | |||
16d12d9139 | |||
ec05df8825 | |||
5637ca1099 | |||
49d2d1c558 | |||
0fe12ca0a9 | |||
cc6dc67b6c | |||
fe1974cb3c | |||
631a0d210d | |||
be46f560ac | |||
581e0ef90a | |||
a28c835566 | |||
0f816bf59e | |||
96354ff9a2 | |||
cd6ac0ff21 | |||
a97642cc64 | |||
94ee9476a7 | |||
b65c3dc4cf | |||
367929730f | |||
14a06eee32 | |||
13644d7831 | |||
c0ae4f7b13 | |||
01f664ccb1 | |||
82da6961b8 | |||
257cd7e0ef | |||
3bdd75d3ab | |||
f632ce0e8a | |||
efac1f21ad | |||
81e72ebff3 | |||
6ca2dac723 | |||
35841b1e43 | |||
bbdfba69a5 | |||
85b455ee51 | |||
a5cd851201 | |||
d25b1001b1 | |||
192671633f | |||
eaf7fe11ed | |||
6ffcd88b82 | |||
ccc03e4da2 | |||
e63fc189e3 | |||
77c763c60c | |||
07e8c7b3e2 | |||
0e4ea8250c | |||
6215ae1e02 | |||
d35dbdd2af | |||
025faa8984 | |||
054aded21a | |||
612a987c2c | |||
af640ea87c | |||
fc9a66e6f6 | |||
8ca6d8f196 | |||
8fef6ec857 | |||
c52cf7b95e | |||
978da83f25 | |||
46b02b2aa9 | |||
0881f56718 | |||
6cde4cdc5f | |||
f6654f36e8 | |||
eaf21706e1 | |||
540aeabe2e | |||
29063e407c | |||
31606c0fd4 | |||
ec8ccadbac | |||
5e8a217a43 | |||
49225ed5e2 | |||
85bac76893 | |||
13beb12a6e | |||
e016d9d104 |
@ -14,7 +14,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||||
|
|
||||||
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
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
2
.gitignore
vendored
@ -34,3 +34,5 @@ yarn-error.log*
|
|||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
.turbo/
|
||||||
|
1824
package-lock.json
generated
1824
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
31
package.json
31
package.json
@ -13,30 +13,27 @@
|
|||||||
"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.468.0",
|
"lucide-react": "^0.507.0",
|
||||||
"next": "15.0.4",
|
"next": "15.3.1",
|
||||||
"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.0.0",
|
"react": "19.1.0",
|
||||||
"react-dom": "19.0.0",
|
"react-dom": "19.1.0",
|
||||||
"sharp": "^0.33.4",
|
"sharp": "^0.34.0",
|
||||||
"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.10.1",
|
"@types/node": "22.15.3",
|
||||||
"@types/react": "19.0.1",
|
"@types/react": "19.1.2",
|
||||||
"@types/react-dom": "19.0.1",
|
"@types/react-dom": "19.1.3",
|
||||||
"eslint": "8.57.1",
|
"eslint": "8.57.1",
|
||||||
"eslint-config-next": "15.0.4",
|
"eslint-config-next": "15.3.1",
|
||||||
"postcss": "8.4.49",
|
"postcss": "8.5.3",
|
||||||
"tailwindcss": "3.4.16",
|
"tailwindcss": "3.4.17",
|
||||||
"turbo": "2.3.3",
|
"turbo": "2.5.2",
|
||||||
"typescript": "5.7.2"
|
"typescript": "5.8.3"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"packageManager": "npm@11.3.0"
|
||||||
"@types/react": "19.0.1",
|
|
||||||
"@types/react-dom": "19.0.1"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user