Skip to content

Commit

Permalink
👷 fix database check
Browse files Browse the repository at this point in the history
  • Loading branch information
drieshooghe committed Oct 8, 2024
1 parent 78ff3fa commit 06be86c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 06be86c

Please sign in to comment.