Skip to content

Commit e6359bd

Browse files
committed
Correct script directory in GH Actions + use default index name in mongo indexes
1 parent 445ddf5 commit e6359bd

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/test_on_pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
ref: ${{github.event.pull_request.head.ref}}
2121
repository: ${{github.event.pull_request.head.repo.full_name}}
2222
- name: Start Application
23-
working-directory: local-development
24-
run: ./scripts/linux/dev_start.sh
23+
working-directory: local-development/scripts/linux
24+
run: ./dev_start.sh
2525
- name: Run Tests
2626
working-directory: local-development/scripts/php-backend-scripts
2727
run: ./dev_all.sh

.github/workflows/test_on_push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
ref: ${{github.event.pull_request.head.ref}}
2121
repository: ${{github.event.pull_request.head.repo.full_name}}
2222
- name: Start Application
23-
working-directory: local-development
24-
run: ./scripts/linux/dev_start.sh
23+
working-directory: local-development/scripts/linux
24+
run: ./dev_start.sh
2525
- name: Run Tests
2626
working-directory: local-development/scripts/php-backend-scripts
2727
run: ./dev_all.sh

application/backend-credit-card-enrollment/backend-typescript/src/common/util/MongoInitializer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ export class MongoInitializer {
6464
{ userId: 1 },
6565
{
6666
background: true,
67-
name: 'userId_asc'
6867
}
6968
);
7069
log.debug('Index created on CreditCard_Enrollment_Enrollment.userId');

0 commit comments

Comments
 (0)