Compare commits
10 Commits
7e8d693832
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
861802b716 | ||
|
|
164c5d9297 | ||
|
|
a323684f13 | ||
|
|
131edc0cb1 | ||
| 6243db3020 | |||
| 97742b24bb | |||
| 40c2139aa8 | |||
| e05eb46bc5 | |||
| edb8d1c521 | |||
| c50aa1b5c1 |
33
.gitea/workflows/code-analysis.yml
Normal file
33
.gitea/workflows/code-analysis.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Code Analysis (JS/Vue)
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Node versions
|
||||
run: |
|
||||
node -v
|
||||
npm -v
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Lint
|
||||
run: npm run lint
|
||||
|
||||
- name: Unit tests
|
||||
run: npm test
|
||||
|
||||
- name: Build
|
||||
run: npm run build --if-present
|
||||
|
||||
- name: Semgrep (SAST)
|
||||
run: semgrep --config p/default --error .
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@babel/parser": "7.28.4",
|
||||
"@babel/parser": "7.28.5",
|
||||
"@pdf-lib/standard-fonts": "1.0.0",
|
||||
"@pdf-lib/upng": "1.0.1",
|
||||
"@vue/compiler-core": "3.5.22",
|
||||
|
||||
1125
package-lock.json
generated
1125
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -12,7 +12,8 @@
|
||||
"start": "nuxt start --port 3100",
|
||||
"postinstall": "nuxt prepare",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest watch"
|
||||
"test:watch": "vitest watch",
|
||||
"lint": "eslint . --ext .js,.vue --fix"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pinia/nuxt": "^0.11.2",
|
||||
@@ -34,10 +35,12 @@
|
||||
"@nuxtjs/tailwindcss": "^6.11.0",
|
||||
"autoprefixer": "^10.4.0",
|
||||
"dotenv": "^17.2.3",
|
||||
"eslint-plugin-vue": "^10.6.2",
|
||||
"lucide-vue-next": "^0.344.0",
|
||||
"postcss": "^8.4.0",
|
||||
"supertest": "^7.1.0",
|
||||
"tailwindcss": "^3.4.0",
|
||||
"vitest": "^2.1.4"
|
||||
"vitest": "^2.1.4",
|
||||
"vue-eslint-parser": "^10.2.0"
|
||||
}
|
||||
}
|
||||
|
||||
6
renovate.json
Normal file
6
renovate.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user