From 99a76fa16b7b78b6d6fd3621d0683db81c814536 Mon Sep 17 00:00:00 2001 From: nick Date: Fri, 8 Dec 2023 19:00:02 +0900 Subject: [PATCH] test: separate build step for core --- .github/workflows/cli.test.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli.test.yaml b/.github/workflows/cli.test.yaml index 44fd2402c..780c3393a 100644 --- a/.github/workflows/cli.test.yaml +++ b/.github/workflows/cli.test.yaml @@ -73,8 +73,11 @@ jobs: ENCRYPT_PASSWORD: "abc123" APP_PORT: "3000" - - name: Build & Run core - run: yarn core build && yarn core start:listener:data_feed & yarn core start:worker:data_feed & yarn core start:reporter:data_feed & + - name: build core + run: yarn core build + + - name: Run core + run: yarn core start:listener:data_feed & yarn core start:worker:data_feed & yarn core start:reporter:data_feed & env: NODE_ENV: "development" CHAIN: "localhost"