Skip to content

Commit

Permalink
fix ContainerConfig error
Browse files Browse the repository at this point in the history
  • Loading branch information
fey committed Jun 14, 2024
1 parent 987b693 commit c4cf91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ const check = async ({ projectSourcePath, codePath, projectMember }) => {
checkPackageName(codePath, sourceLang);
const options = { cwd: projectSourcePath };
// NOTE: Installing dependencies is part of testing the project.
await exec.exec('docker-compose', ['run', 'app', 'make', 'setup'], options);
await exec.exec('docker-compose', ['-f', 'docker-compose.yml', 'up', '--abort-on-container-exit'], options);
await exec.exec('docker compose', ['run', 'app', 'make', 'setup'], options);
await exec.exec('docker compose', ['-f', 'docker-compose.yml', 'up', '--abort-on-container-exit'], options);

const checkState = {
state: 'success',
Expand Down

0 comments on commit c4cf91b

Please sign in to comment.