ci: simplify workflow to basic build with debug steps
Some checks failed
audit / audit (push) Has been cancelled
ci-cd / build (push) Has been cancelled
ci / build (push) Has been cancelled
security / audit (push) Has been cancelled
test / test (push) Has been cancelled

- Removed comprehensive CI/CD pipeline (lint, test, security, deploy stages)
- Replaced with minimal build job running on incus-debian
- Added basic checkout, debug environment info, npm install, and build steps
- Removed Python-specific testing and multi-service deployment logic
- Removed staging/production deployment, performance testing, docs generation, and release management
This commit is contained in:
2026-03-27 11:41:34 +01:00
parent 9b5cfa775c
commit 8708729152
7 changed files with 99 additions and 888 deletions

16
.gitea/workflows/fix.yml Normal file
View File

@@ -0,0 +1,16 @@
name: autofix
on:
workflow_dispatch:
jobs:
fix:
runs-on: incus-debian
steps:
- uses: actions/checkout@v4
- run: npm install
- name: Auto fix vulnerabilities
run: npm audit fix || true