This repository was archived by the owner on Oct 9, 2025. It is now read-only.
chore: rm unnecessary code #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Bot App | |
| on: | |
| push: | |
| paths: | |
| - 'apps/bot/**' | |
| - 'packages/shared/**' | |
| - 'packages/db/**' | |
| - '.github/workflows/build-bot.yml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Build bot app | |
| run: bun run --filter=@wallet-analytic/bot build |