conductor

CI task system
git clone git://git.finwo.net/app/conductor
Log | Files | Refs | README | LICENSE

commit 9d4a25c78da70982200149df4087613909453b20
parent 9b1f7f0a6d8eb6c9d0e063be53a5f3fcf1337683
Author: finwo <finwo@pm.me>
Date:   Mon, 21 Sep 2026 12:14:10 +0200

ensure git is a thing in the pipeline

Diffstat:
M.conductor.yml | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.conductor.yml b/.conductor.yml @@ -10,7 +10,7 @@ version: 1 visibility: public defaults: - image: node:24-bookworm-slim + image: node:24-alpine timeout: 15m tasks: @@ -18,12 +18,14 @@ tasks: # no CRLF, no trailing whitespace. style: script: + - apk add --no-cache git - npm install --no-audit --no-fund - node --test test/ascii.test.js # Everything that runs without a docker socket. test: script: + - apk add --no-cache git - npm install --no-audit --no-fund - npm test env: @@ -34,6 +36,7 @@ tasks: integration: requires: [docker] script: + - apk add --no-cache git - npm install --no-audit --no-fund - npm test