Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mpexm committed Sep 27, 2023
1 parent b8fa0e9 commit 379c48a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ jobs:
working-directory: ./event
run: yarn install --frozen-lockfile

- name: App "event" - ESLint
working-directory: ./event
run: yarn lint

- name: App "event" - TypeScript
working-directory: ./event
run: yarn tsc --noEmit --incremental
Expand All @@ -44,10 +40,6 @@ jobs:
working-directory: ./event
run: yarn install --frozen-lockfile

- name: App "service" - ESLint
working-directory: ./event
run: yarn lint

- name: App "service" - TypeScript
working-directory: ./event
run: yarn tsc --noEmit --incremental
Expand Down
1 change: 0 additions & 1 deletion event/src/controllers/event.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export async function post(request: Request, response: Response) {
response.status(200);
response.send();
} catch (error) {
console.log(error)
logger.info(`Event message error: ${(error as Error).message}`);
response.status(400);
response.send();
Expand Down

0 comments on commit 379c48a

Please sign in to comment.