From 38c4e0ede1e91ed23521db9254dc77a3af39d186 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Mon, 7 Oct 2024 01:16:59 -0600 Subject: [PATCH] chore: add build server --- .github/workflows/pull-request.yml | 2 ++ apps/api/docker-compose.yml | 21 --------------------- 2 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 apps/api/docker-compose.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1d34073f..bbec27a5 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -18,6 +18,7 @@ jobs: node-version: 18.18.0 cache: "pnpm" - run: pnpm install --frozen-lockfile + - run: pnpm run server:build - run: pnpm biome ci - run: pnpm typecheck @@ -32,6 +33,7 @@ jobs: node-version: 18.18.0 cache: "pnpm" - run: pnpm install --frozen-lockfile + - run: pnpm run server:build - run: pnpm build parallel-tests: diff --git a/apps/api/docker-compose.yml b/apps/api/docker-compose.yml deleted file mode 100644 index 6e5df887..00000000 --- a/apps/api/docker-compose.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: "2" -services: - zookeeper: - image: "confluentinc/cp-zookeeper:latest" - environment: - ZOOKEEPER_CLIENT_PORT: 2181 - ZOOKEEPER_TICK_TIME: 2000 - ports: - - "2181:2181" - - kafka: - image: "confluentinc/cp-kafka:latest" - depends_on: - - zookeeper - environment: - KAFKA_BROKER_ID: 1 - KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 - KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092 - KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 - ports: - - "9092:9092"