Skip to content

Commit 6255d60

Browse files
committed
fix: build all packages first for CI, not just contracts
1 parent 688b9cf commit 6255d60

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/ci-contracts.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ env:
55

66
on:
77
push:
8-
branches: "*"
8+
branches: '*'
99
paths:
1010
- packages/contracts/**
1111
pull_request:
12-
branches: "*"
12+
branches: '*'
1313
paths:
1414
- packages/contracts/**
1515
workflow_dispatch:
@@ -22,10 +22,8 @@ jobs:
2222
uses: actions/checkout@v4
2323
- name: Set up environment
2424
uses: ./.github/actions/setup
25-
- name: Build
26-
run: |
27-
pushd packages/contracts
28-
yarn build || yarn build
25+
- name: Build all packages
26+
run: yarn build
2927
- name: Run tests
3028
run: |
3129
pushd packages/contracts

0 commit comments

Comments
 (0)