Files
aitbc/.gitea/workflows/ci.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

26 lines
394 B
YAML

name: ci
on:
push:
pull_request:
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"