Skip to content

Commit

Permalink
ci(build): fix docker-compose command not found
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Sep 27, 2024
1 parent b2eeb6f commit 622804b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
run: yarn playwright install --with-deps

- name: Start grafana docker
run: docker-compose up -d
run: docker compose up -d

- name: Run Playwright tests
run: yarn playwright test

- name: Stop grafana docker
run: docker-compose down
run: docker compose down

- uses: actions/upload-artifact@v4
if: always()
Expand Down

0 comments on commit 622804b

Please sign in to comment.