From 06be86cc5ccc07eb76cfc378c26aa1fbd322dde8 Mon Sep 17 00:00:00 2001 From: Dries Hooghe Date: Tue, 8 Oct 2024 15:10:51 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20fix=20database=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/benchmark.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 99f0059c..11d6e566 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v4 - name: Start database - if: ${{ matrix.database }} != 'in-memory' + if: ${{ matrix.database != 'in-memory' }} run: docker compose up -d ${{ matrix.database }} - name: Setup job environment @@ -60,6 +60,13 @@ jobs: pattern: report-json-* merge-multiple: true + - name: Setup job environment + id: setup-job + uses: ./.github/actions/setup-job-env + with: + cache-key: node-22.x + node-version: 22.x + - name: Generate report (MD) run: pnpm run benchmark:report