Skip to content

Commit 1cb591b

Browse files
authored
Merge pull request #83 from mongodb/bug/docsp-57631-js-express-workflow
DOCSP-57631: Fix js-express GitHub workflow
2 parents dfdff26 + 0ff723a commit 1cb591b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/run-express-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ jobs:
6262

6363
- name: Run unit tests
6464
working-directory: mflix/server/js-express
65-
run: npm run test:unit -- --json --outputFile=test-results-unit.json || true
65+
run: npm run test:unit -- --json --outputFile=test-results-unit.json
6666
env:
6767
MONGODB_URI: mongodb://localhost:27017/sample_mflix?directConnection=true
6868

6969
- name: Run integration tests
7070
working-directory: mflix/server/js-express
71-
run: npm run test:integration -- --json --outputFile=test-results-integration.json || true
71+
continue-on-error: true
72+
run: npm run test:integration -- --json --outputFile=test-results-integration.json
7273
env:
7374
MONGODB_URI: mongodb://localhost:27017/sample_mflix?directConnection=true
7475
ENABLE_SEARCH_TESTS: true

0 commit comments

Comments
 (0)