fix(write-tests): boundary/wire mocking over interface fakes #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate Frontmatter | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/agents/*.md' | |
| - '**/skills/*/SKILL.md' | |
| - '**/commands/*.md' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: cd .github/scripts && bun install yaml | |
| - name: Get changed frontmatter files | |
| id: changed | |
| env: | |
| BASE_REF: ${{ github.event.pull_request.base.ref }} | |
| run: | | |
| FILES=$(git diff --name-only "origin/$BASE_REF"...HEAD | grep -E '(agents/.*\.md|skills/.*/SKILL\.md|commands/.*\.md)$' || true) | |
| echo "files<<EOF" >> "$GITHUB_OUTPUT" | |
| echo "$FILES" >> "$GITHUB_OUTPUT" | |
| echo "EOF" >> "$GITHUB_OUTPUT" | |
| - name: Validate frontmatter | |
| if: steps.changed.outputs.files != '' | |
| env: | |
| FILES: ${{ steps.changed.outputs.files }} | |
| run: | | |
| echo "$FILES" | xargs bun .github/scripts/validate-frontmatter.ts |