Files
aitbc/.gitea/workflows/ci.yml
aitbc1 bb443ba466
Some checks failed
audit / audit (push) Has been cancelled
ci-cd / build (push) Has been cancelled
ci / build (push) Has been cancelled
security / audit (push) Has been cancelled
test / test (push) Has been cancelled
ci: migrate all workflows from incus-debian to debian:host runner
- Updated runs-on from incus-debian to debian:host 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 ubuntu-latest to debian:host
- Standardizes runner configuration across all CI/CD pipelines
2026-03-27 11:49:47 +01:00

26 lines
399 B
YAML

name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: debian:host
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"