Skip to content

Allow Discord agent multi-step tool loops. #94

Allow Discord agent multi-step tool loops.

Allow Discord agent multi-step tool loops. #94

Workflow file for this run

name: Next.js App CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: πŸ§ͺ Tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🍞 Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: πŸ“₯ Download deps
working-directory: app
run: bun install
- name: πŸ’„ Format check
working-directory: app
run: bun run check
- name: πŸ” Type check
working-directory: app
run: bun run typecheck
- name: πŸ„ Run the tests
run: echo "No tests configured yet. Add tests as needed."