Skip to content

Commit 0987b78

Browse files
committed
chore: improve build in each one folder
1 parent dff415b commit 0987b78

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,15 @@ jobs:
4242
find packages/contract/src/managed -maxdepth 5 -type f
4343
exit 1
4444
fi
45-
- name: Build all packages
46-
run: yarn build:all
45+
- name: Build contract
46+
run: yarn --cwd packages/contract build
47+
- name: Debug contract types
48+
run: |
49+
set -euo pipefail
50+
sed -n '1,20p' packages/contract/dist/index.d.ts
51+
- name: Build api
52+
run: yarn --cwd packages/api build
53+
- name: Build cli
54+
run: yarn --cwd packages/cli build
55+
- name: Build ui
56+
run: yarn --cwd packages/ui build

0 commit comments

Comments
 (0)