Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# SPDX-FileCopyrightText: 2024 LiveKit, Inc.
#
# SPDX-License-Identifier: Apache-2.0

name: agents CI
on: [push, pull_request]

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE-3.0 compliance check
uses: fsfe/reuse-action@v3
- uses: oven-sh/setup-bun@v1
- name: ESLint
run: |
bun install
cd agents
bun lint

build:
name: Build
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Bun build
run: |
bun install
cd agents
bun run build
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Copyright: 2024 LiveKit, Inc.
License: Apache-2.0

# global project files
Files: package.json tsconfig.json bun.lockb .prettierrc eslint.config.js
Files: package.json tsconfig.json bun.lockb .prettierrc eslint.config.mjs
Copyright: 2024 LiveKit, Inc.
License: Apache-2.0

Expand Down
1 change: 1 addition & 0 deletions agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@livekit/rtc-node": "^0.1.0",
"@livekit/protocol": "^1.13.0",
"commander": "^12.0.0",
"livekit-server-sdk": "^2.1.2",
Expand Down
Binary file modified bun.lockb
Binary file not shown.
File renamed without changes.