Skip to content

Commit c38ae95

Browse files
committed
fix: changing build order for CI
1 parent a3b9d33 commit c38ae95

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci-contracts.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
2424
uses: ./.github/actions/setup
2525
- name: Build dependencies
2626
run: |
27-
yarn workspace @graphprotocol/sdk run build
28-
yarn workspace @graphprotocol/contracts run build
27+
pushd packages/contracts
28+
yarn build
29+
popd
30+
pushd packages/sdk
31+
yarn build
2932
- name: Run tests
3033
run: |
3134
pushd packages/contracts

0 commit comments

Comments
 (0)