From fcb0baa025427b2d717df70bb3c4520e54d07bd9 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index def6811..3f0e0d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,8 @@ jobs: with: node-version: 20.x cache: npm + - name: Install Docker + run: apt install docker.io - run: npm ci - run: npm run build - run: npm run format-check