Skip to content

Commit

Permalink
ci: use docker compose (v2) instead of docker-compose (v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Mar 19, 2024
1 parent 628759e commit 7ea6091
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:

name: Integration Tests

# TODO: these show as seperate checks in PR... shouldn't

jobs:
checkout:
runs-on: ubuntu-22.04
Expand All @@ -30,7 +32,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/rafiki/env-setup
- run: docker-compose -v
- run: docker compose version
- run: pnpm --filter integration build:deps
- run: pnpm --filter integration run-tests
2 changes: 1 addition & 1 deletion test/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "",
"scripts": {
"build:deps": "pnpm --filter mock-account-service-lib build",
"testenv:compose": "docker-compose -f ./testenv/cloud-nine-wallet/docker-compose.yml -f ./testenv/happy-life-bank/docker-compose.yml -f ./testenv/docker-compose.yml",
"testenv:compose": "docker compose -f ./testenv/cloud-nine-wallet/docker-compose.yml -f ./testenv/happy-life-bank/docker-compose.yml -f ./testenv/docker-compose.yml",
"test": "jest",
"run-tests": "./scripts/run-tests.sh"
},
Expand Down

0 comments on commit 7ea6091

Please sign in to comment.