Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
chore(ci): switch to docker compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
brianphillips committed Aug 8, 2024
1 parent 9943f20 commit f20543d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4

- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d --build
run: docker compose -f "docker-compose.yml" up -d --build

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand All @@ -38,11 +38,11 @@ jobs:
- run: npm run lint
- run: npm test

- run: docker-compose ps -a
- run: docker compose ps -a
- run: npm run test:integration
- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.yml" down
run: docker compose -f "docker-compose.yml" down
publish:
needs:
- build
Expand Down

0 comments on commit f20543d

Please sign in to comment.