Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/tests-auth.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: tests-auth
on:
pull_request
pull_request:
paths:
- 'auth/**'
jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests-orders.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: tests-orders
on:
pull_request
pull_request:
paths:
- 'orders/**'
jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests-payments.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: tests-payments
on:
pull_request
pull_request:
paths:
- 'payments/**'
jobs:
build:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests-tickets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: tests-tickets
on:
pull_request
pull_request:
paths:
- 'tickets/**'
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion auth/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const start = async () => {
}

app.listen(3000, () => {
console.log('Listening on port 3000!!!!!!!!');
console.log('Listening on port 3000!!!!!!!!!');
});
};

Expand Down