ci: remove security audit job from CI workflow
Some checks failed
CI/CD Pipeline / Quick Checks (pull_request) Failing after 18s
CI/CD Pipeline / ESLint (pull_request) Has been skipped
CI/CD Pipeline / Test & Coverage (pull_request) Has been skipped
CI/CD Pipeline / Build Application (pull_request) Has been skipped

This commit is contained in:
2025-05-27 13:26:37 +02:00
parent 9cb7cf000f
commit 95823a866f
2 changed files with 1 additions and 36 deletions

View File

@ -157,34 +157,4 @@ jobs:
- name: Build application
run: bun run build
env:
NODE_OPTIONS: --max_old_space_size=4096
# Job 5: Security audit (can run in parallel)
security-audit:
name: Security Audit
runs-on: ubuntu-latest
needs: quick-checks
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ env.BUN_VERSION }}
- name: Setup Yarn
run: bun install -g yarn
- name: Restore node_modules cache
uses: actions/cache@v4
with:
path: node_modules
key: node-modules-${{ needs.quick-checks.outputs.cache-key }}
- name: Install dependencies with yarn (if cache miss)
run: yarn install --frozen-lockfile
- name: Run dependency vulnerability check with yarn
run: yarn audit-ci --moderate --report-type summary
NODE_OPTIONS: --max_old_space_size=4096

View File

@ -138,11 +138,6 @@ The Gitea Actions workflow includes:
- Unit tests with coverage
- Build verification
2. **Security Audit:**
- Dependency vulnerability scanning
- Security audit reporting
## 📊 Code Quality
### Pre-commit Hooks