- 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
13 lines
171 B
YAML
13 lines
171 B
YAML
name: security
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: incus-debian
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: npm install
|
|
- run: npm audit || true
|