Skip to content

Commit

Permalink
fixing typo with docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brett-onions committed Nov 21, 2024
1 parent 2381334 commit 26d5156
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:

# Set up Docker Compose
- name: Set up Docker Compose
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

# Start Docker Compose services
- name: Start services with Docker Compose
run: docker-compose up -d
run: docker compose up -d

- name: Run tests
run: npm run test

- name: Tear down services
if: always()
run: docker-compose down
run: docker compose down

0 comments on commit 26d5156

Please sign in to comment.