From c40347511a2e9c44c2039484a8c20bea055f7ca9 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Wed, 25 Sep 2024 18:50:32 +0200 Subject: [PATCH] GitHub Actions: Install required packages for specs --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 410a8ed42..43f1e264f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: --health-retries 5 steps: + - name: Install packages + run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable curl libjemalloc2 libvips postgresql-client + - name: Checkout code uses: actions/checkout@v4 with: