Skip to content

Commit 8f3e0f1

Browse files
committed
fix: build steps
Signed-off-by: Tomás Migone <[email protected]>
1 parent 5026fbb commit 8f3e0f1

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/ci-horizon.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,26 @@ jobs:
2424
submodules: recursive
2525
- name: Set up environment
2626
uses: ./.github/actions/setup
27-
- name: Build
27+
- name: Build contracts
28+
run: |
29+
pushd packages/contracts
30+
yarn build
31+
popd
32+
- name: Build horizon
2833
run: |
2934
pushd packages/horizon
3035
yarn build
36+
popd
37+
- name: Build subgraph service
38+
run: |
39+
pushd packages/subgraph-service
40+
yarn build
41+
popd
42+
- name: Build hardhat-graph-protocol
43+
run: |
44+
pushd packages/hardhat-graph-protocol
45+
yarn build
46+
popd
3147
- name: Run tests
3248
run: |
3349
pushd packages/horizon

0 commit comments

Comments
 (0)