Skip to content

Update eve skill with Agent Runs guidance #210

Update eve skill with Agent Runs guidance

Update eve skill with Agent Runs guidance #210

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
# Verify committed generated artifacts match their sources BEFORE the
# build step regenerates (and thus clobbers) them in the working tree.
- name: Check committed manifest is up-to-date
run: bun run build:manifest:check
- name: Check generated files are up-to-date
run: bun run build:from-skills:check
- name: Build
run: bun run build
- name: Typecheck
run: bun run typecheck
- name: Validate skills
run: bun run validate
- name: Test
run: bun test