Files
aitbc/.gitea/workflows/ci.yml
aitbc1 b476d93867
Some checks failed
/ audit (push) Failing after 1s
ci-cd / build (push) Failing after 1s
ci / build (push) Failing after 1s
autofix / fix (push) Failing after 0s
test / test (push) Successful in 1s
security / audit (push) Failing after 8s
ci: add workflow_dispatch trigger to all workflows for manual execution
- Added workflow_dispatch to audit.yml, ci-cd.yml, ci.yml, cli-level1-tests.yml, security-scanning.yml, and test.yml
- Added push trigger to fix.yml (was workflow_dispatch only)
- Enables manual workflow runs from Gitea UI for all CI/CD pipelines
2026-03-27 12:10:12 +01:00

27 lines
415 B
YAML

name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: debian
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Show environment
run: |
hostname
node -v || true
npm -v || true
- name: Install dependencies
run: npm install
- name: Build
run: npm run build || echo "no build step"