Skip to content

Add tvc-app-builder skill with eval CI #6

Add tvc-app-builder skill with eval CI

Add tvc-app-builder skill with eval CI #6

Workflow file for this run

name: Skill Evals
on:
push:
branches:
- main
paths:
- "skills/**"
pull_request:
branches:
- main
paths:
- "skills/**"
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Validate skill structure
run: npm run validate
eval:
runs-on: ubuntu-latest
needs: validate
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code
- name: Run trigger evals
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
DISABLE_INTERACTIVITY: "1"
run: npm run eval:ci