Skip to content

Commit

Permalink
Update test.yml to ues docker compose instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksTeresh authored Aug 1, 2024
1 parent 950453b commit 6750a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: npm ci

- name: Start the application
run: docker-compose -f docker-compose.ci.yml up -d
run: docker compose -f docker-compose.ci.yml up -d

- name: Install Playwright Browsers
run: npx playwright install --with-deps
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Print logs on failure
shell: bash
if: failure()
run: docker-compose -f docker-compose.ci.yml logs
run: docker compose -f docker-compose.ci.yml logs

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

0 comments on commit 6750a8b

Please sign in to comment.