Skip to content

feat: multi-agent gateway with separate-origin widget host (experimental) #1294

feat: multi-agent gateway with separate-origin widget host (experimental)

feat: multi-agent gateway with separate-origin widget host (experimental) #1294

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true # caches module download + build cache keyed on go.sum
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
# no npm install in this repo — node binary caching is handled by the action itself
- name: Check gofmt
run: |
files=$(gofmt -l .)
if [ -n "$files" ]; then
echo "Files not formatted:"
echo "$files"
exit 1
fi
- name: Build
run: go build ./...
- name: Test
run: go test ./...