From d0d75e6d61968356e91a7b18e1ae6f97f014311e Mon Sep 17 00:00:00 2001 From: pierregee Date: Wed, 8 Nov 2023 13:29:58 +0800 Subject: [PATCH] fix ci --- apps/server/src/main.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/server/src/main.ts b/apps/server/src/main.ts index 0ba0de6a..e47d314c 100644 --- a/apps/server/src/main.ts +++ b/apps/server/src/main.ts @@ -5,6 +5,10 @@ import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); const PORT = process.env.PORT || 3001; - app.listen(PORT).then(() => console.log(`Started server on port ${PORT}`)); + // eslint-disable-next-line @typescript-eslint/no-floating-promises + app.listen(PORT).then(() => { + // eslint-disable-next-line no-console + console.log(`Started server on port ${PORT}`) + }); } void bootstrap();