3 Commits
Author SHA1 Message Date
Ninosaurier 0abb180441 fix(ci-runner): use custom node22-docker image for CI jobs
CI / lint-and-format (push) Failing after 0s
CI / changeset-check (push) Failing after 0s
CI / unit-tests (push) Failing after 0s
CI / component-tests (push) Failing after 0s
Switch all jobs to run inside git.byting-pandas.ninja/ci/node22-docker,
which bundles Node 22, Docker CLI, and docker-compose. Removes the
actions/setup-node step since Node is already provided by the image.
2026-08-02 17:06:54 +02:00
Ninosaurier 4b8cb62817 fix(ci-runner): add Dockerfile for node22 CI runner image
Base image for the gitea-act-runner build environment, includes
Docker CLI and docker-compose for CI jobs that need to build/push
containers, plus corepack for yarn/pnpm support."
2026-08-02 17:05:03 +02:00
Ninosaurier 38bbaf3276 ci: add custom runner image with docker support 2026-08-02 16:16:45 +02:00
2 changed files with 17 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:22-bullseye
RUN apt-get update \
&& apt-get install -y docker.io \
&& rm -rf /var/lib/apt/lists/*
RUN corepack enable
RUN npm install -g docker-compose
+8 -16
View File
@@ -10,13 +10,11 @@ on:
jobs:
lint-and-format:
runs-on: ubuntu-docker-dind
container:
image: git.byting-pandas.ninja/ci/node22-docker:latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: corepack enable
- run: corepack prepare pnpm@11.11.0 --activate
@@ -30,15 +28,13 @@ jobs:
changeset-check:
runs-on: ubuntu-docker-dind
container:
image: git.byting-pandas.ninja/ci/node22-docker:latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: corepack enable
- run: corepack prepare pnpm@11.11.0 --activate
@@ -50,13 +46,11 @@ jobs:
unit-tests:
runs-on: ubuntu-docker-dind
container:
image: git.byting-pandas.ninja/ci/node22-docker:latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: corepack enable
- run: corepack prepare pnpm@11.11.0 --activate
@@ -67,13 +61,11 @@ jobs:
component-tests:
runs-on: ubuntu-docker-dind
container:
image: git.byting-pandas.ninja/ci/node22-docker:latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: corepack enable
- run: corepack prepare pnpm@11.11.0 --activate