Skip to content

Commit

Permalink
test: docker compose update the command
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Aug 2, 2024
1 parent 57646e4 commit 60fdd06
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/api-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Start docker containers
run: |
docker-compose -f "docker-compose.e2e.yaml" up -d --build
docker compose -f "docker-compose.e2e.yaml" up -d --build
- name: Setup Node.js
uses: actions/setup-node@v3
Expand All @@ -56,4 +56,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.e2e.yaml" down
run: docker compose -f "docker-compose.e2e.yaml" down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Start docker containers
run: |
docker-compose -f "docker-compose.yaml" up -d --build
docker compose -f "docker-compose.yaml" up -d --build
- name: List running containers
run: docker ps

Expand All @@ -58,4 +58,4 @@ jobs:
- name: Stop containers
if: always()
run: |
docker-compose -f "docker-compose.yaml" down
docker compose -f "docker-compose.yaml" down
2 changes: 1 addition & 1 deletion packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"postinstall": "cd src/playbook && npm install",
"integration-test:api": "jest --verbose",
"integration-test:ui": "npx playwright test",
"block-explorer:start": "docker-compose up",
"block-explorer:start": "docker compose up",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern 'repos' --ignore-pattern 'git add .'"
},
"devDependencies": {
Expand Down

0 comments on commit 60fdd06

Please sign in to comment.