chore(deps): bump ai from 4.1.51 to 4.1.54 in /packages/core #715
This file contains 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libx11-dev libxtst-dev libpng-dev libxinerama-dev libxkbcommon-dev | |
- name: Install dependencies | |
run: bun install | |
- name: Build core | |
run: bun run build:core | |
- name: Build create-agent | |
run: bun run build:create-agent |