Merge pull request #500 from elizaOS/card-styling-change #188
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 client | |
on: | |
push: | |
paths: | |
- "packages/client/**" | |
jobs: | |
build-client: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: "1.2.4" | |
- name: Install dependencies | |
run: bun install | |
working-directory: packages/client | |
- name: Build client | |
run: bun run build | |
working-directory: packages/client |