Refactor code structure for improved readability and maintainability
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-12 22:20:57 +02:00
parent 9fbb99e7a1
commit dcc60af0c0
3 changed files with 12 additions and 10 deletions
+7 -8
View File
@@ -26,17 +26,16 @@ jobs:
- name: Install dependencies (backend)
working-directory: ./backend
run: npm install
run: npm ci
- name: Generate Prisma Client
- name: Typecheck backend
working-directory: ./backend
run: npm run prisma:generate
- name: Run tests (backend)
working-directory: ./backend
run: npm test
run: npm run typecheck
- name: Build NestJS app
working-directory: ./backend
run: npm run build
continue-on-error: true
- name: Dependency audit (high+critical)
working-directory: ./backend
run: npm run audit:high
+4 -1
View File
@@ -5,7 +5,10 @@
"scripts": {
"build": "nest build",
"start": "node dist/main",
"start:dev": "nest start --watch"
"start:dev": "nest start --watch",
"typecheck": "tsc --noEmit",
"audit:high": "npm audit --audit-level=high",
"quality:ci": "npm run typecheck && npm run build && npm run audit:high"
},
"dependencies": {
"@nestjs/common": "^11.1.19",
File diff suppressed because one or more lines are too long