Skip to content

Commit 39161d6

Browse files
authored
chore: properly call docker compose and reference jest config (#2011)
2 parents 1f5a6a5 + 18065d7 commit 39161d6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
http-sample,
2323
microservice-sample,
2424
mongo-sample,
25+
mongodb-transaction-sample,
2526
render-sample,
2627
rxjs-sample,
2728
sequelize-sample,
@@ -60,7 +61,7 @@ jobs:
6061
with:
6162
node-version: ${{ matrix.node-version }}
6263
- name: Start Docker-Compose
63-
run: docker-compose up -d
64+
run: docker compose up -d
6465
- name: Install pnpm
6566
uses: pnpm/[email protected]
6667
with:
@@ -69,7 +70,7 @@ jobs:
6970
- name: Run tests
7071
run: pnpm run test:e2e
7172
- name: Stop Docker-Compose
72-
run: docker-compose down
73+
run: docker compose down
7374

7475
automerge:
7576
needs: e2e-test

apps/mongodb-transaction-sample/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"executor": "@nx/jest:jest",
5050
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
5151
"options": {
52-
"jestConfig": "apps/mongodb-transaction-sample/jest.config.ts",
52+
"jestConfig": "apps/mongodb-transaction-sample/jest.config.js",
5353
"passWithNoTests": true
5454
},
5555
"configurations": {

0 commit comments

Comments
 (0)