ci: simplify workflow to basic build with debug steps
- 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:
15
.gitea/workflows/test.yml
Normal file
15
.gitea/workflows/test.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
name: test
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: incus-debian
|
||||
|
||||
steps:
|
||||
- run: |
|
||||
echo "Runner OK"
|
||||
hostname
|
||||
whoami
|
||||
pwd
|
||||
Reference in New Issue
Block a user