Compare commits

...

10 Commits

Author SHA1 Message Date
Torsten Schulz (local)
861802b716 Update package dependencies to include eslint-plugin-vue and vue-eslint-parser for enhanced linting support
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 33s
2025-12-19 17:32:56 +01:00
Torsten Schulz (local)
164c5d9297 Update code analysis workflow to run on ubuntu-latest for improved compatibility
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 52s
2025-12-19 17:28:47 +01:00
Torsten Schulz (local)
a323684f13 Update code analysis workflow to improve clarity and efficiency by renaming steps and simplifying Semgrep command execution.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Has been cancelled
2025-12-19 16:53:09 +01:00
Torsten Schulz (local)
131edc0cb1 Add linting script to package.json for improved code quality
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Has been cancelled
2025-12-19 16:38:29 +01:00
6243db3020 Merge pull request 'Update dependency @babel/parser to v7.28.5' (#2) from renovate/babel-monorepo into main
Reviewed-on: #2
2025-12-19 16:13:11 +01:00
97742b24bb Merge pull request 'Update dependency @pinia/nuxt to v0.11.3' (#3) from renovate/pinia-nuxt-0.x-lockfile into main
Reviewed-on: #3
2025-12-19 16:12:58 +01:00
40c2139aa8 Update dependency @pinia/nuxt to v0.11.3 2025-12-19 16:11:56 +01:00
e05eb46bc5 Update dependency @babel/parser to v7.28.5 2025-12-19 16:11:48 +01:00
edb8d1c521 Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Reviewed-on: #1
2025-12-19 16:09:18 +01:00
c50aa1b5c1 Add renovate.json 2025-12-19 15:58:03 +01:00
5 changed files with 1145 additions and 28 deletions

View 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 .

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}