Skip to content

Commit

Permalink
chore: Add api client build script and updated CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Sep 5, 2024
1 parent f7a091f commit da0e27a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/validate-api-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
run: |
pnpm run lint:api-client
- name: Build
run: |
pnpm run build:api-client
- name: Test
run: |
pnpm run test:api-client
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validate-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,8 @@ jobs:
- name: Lint
run: |
pnpm run lint:cli
pnpm run lint:cli
- name: Build
run: |
pnpm run build:cli
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"build:web": "turbo run build --filter=web",
"build:platform": "turbo run build --filter=platform",
"build:cli": "turbo run build --filter=cli",
"build:api-client": "pnpm run --filter=api-client build",
"start": "turbo run start",
"start:api": "turbo run start --filter=api",
"start:web": "turbo run start --filter=web",
Expand Down

0 comments on commit da0e27a

Please sign in to comment.