Skip to content

Commit

Permalink
chore: properly call docker compose and reference jest config (#2011)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 authored Aug 23, 2024
2 parents 1f5a6a5 + 18065d7 commit 39161d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
http-sample,
microservice-sample,
mongo-sample,
mongodb-transaction-sample,
render-sample,
rxjs-sample,
sequelize-sample,
Expand Down Expand Up @@ -60,7 +61,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Start Docker-Compose
run: docker-compose up -d
run: docker compose up -d
- name: Install pnpm
uses: pnpm/[email protected]
with:
Expand All @@ -69,7 +70,7 @@ jobs:
- name: Run tests
run: pnpm run test:e2e
- name: Stop Docker-Compose
run: docker-compose down
run: docker compose down

automerge:
needs: e2e-test
Expand Down
2 changes: 1 addition & 1 deletion apps/mongodb-transaction-sample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "apps/mongodb-transaction-sample/jest.config.ts",
"jestConfig": "apps/mongodb-transaction-sample/jest.config.js",
"passWithNoTests": true
},
"configurations": {
Expand Down

0 comments on commit 39161d6

Please sign in to comment.