Skip to content

Commit

Permalink
test: separate build step for core
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Dec 8, 2023
1 parent 5f10719 commit 99a76fa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cli.test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 99a76fa

Please sign in to comment.