Files
aitbc/.gitea/workflows/ci-cd.yml
aitbc1 068fd1fc55
Some checks failed
/ audit (push) Failing after 6s
ci-cd / build (push) Failing after 1s
ci / build (push) Failing after 2s
security / audit (push) Failing after 1s
test / test (push) Failing after 0s
ci: migrate all workflows from gitea-runner to debian
- Updated runs-on from gitea-runner to debian across all workflow files
- Changed audit.yml, ci-cd.yml, ci.yml, fix.yml, security-scanning.yml, and test.yml
- Updated cli-level1-tests.yml from gitea-runner to debian
- Fixed audit.yml workflow name from 'gitea-runnername' to 'debianname'
- Standardizes runner configuration to use debian label
2026-03-27 11:55:43 +01:00

36 lines
626 B
YAML

name: ci-cd
on:
push:
pull_request:
jobs:
build:
runs-on: debian
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Debug environment
run: |
echo "=== SYSTEM ==="
hostname
uname -a
whoami
echo "=== NODE ==="
node -v
npm -v
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Build
run: npm run build || echo "no build step"
- name: Test
run: npm test || echo "no tests"
- name: Audit (non-blocking)
run: npm audit || true