From ff73f452b73800a82284c5b06f7f827e62d41d1a Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Tue, 4 Mar 2025 16:29:26 +0100 Subject: [PATCH] fix(ci): Docker is missing in small/medium act runners --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index def6811..e42a5df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,12 @@ jobs: with: node-version: 20.x cache: npm + - name: Install Docker + run: apt update && apt install docker.io -y + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + platforms: linux/amd64,linux/arm64 - run: npm ci - run: npm run build - run: npm run format-check