ci: target available GitPeji runner
APT build checks / build-checks (push) Has been cancelled

This commit is contained in:
2026-08-19 22:48:09 +00:00
parent 8dad96c27d
commit c66d0ce49e
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs: jobs:
build-checks: build-checks:
runs-on: ubuntu-latest runs-on: alta-tool-hub-ci
permissions: permissions:
contents: read contents: read
steps: steps:
+3 -1
View File
@@ -56,8 +56,10 @@ test('build remains Windows portable without misleading signing overrides', () =
assert.match(pkg.scripts.check, /verify-kit/); assert.match(pkg.scripts.check, /verify-kit/);
}); });
test('GitPeji CI is build-only and runs all hardening gates on Node 22', () => { test('GitPeji CI targets the live runner and is build-only on Node 22', () => {
const workflow = read('.gitea/workflows/ci.yml'); const workflow = read('.gitea/workflows/ci.yml');
assert.match(workflow, /^\s*runs-on:\s*alta-tool-hub-ci\s*$/m);
assert.doesNotMatch(workflow, /^\s*runs-on:\s*ubuntu-latest\s*$/m);
assert.match(workflow, /actions\/checkout@v4/); assert.match(workflow, /actions\/checkout@v4/);
assert.match(workflow, /actions\/setup-node@v4/); assert.match(workflow, /actions\/setup-node@v4/);
assert.match(workflow, /node-version:\s*['"]?22['"]?/); assert.match(workflow, /node-version:\s*['"]?22['"]?/);