Skip to content

Commit

Permalink
fix ContainerConfig error (#30)
Browse files Browse the repository at this point in the history
* fix ContainerConfig error

* fix
  • Loading branch information
fey authored Jun 14, 2024
1 parent 987b693 commit 77ee261
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/run-post-actions/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/run-post-actions/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/run-tests/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/run-tests/index.js.map

Large diffs are not rendered by default.

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 77ee261

Please sign in to comment.