Files
supabase-postgres-best-prac…/.github/workflows/ci.yml
Pedro Rodrigues 0b8e84ef1f test: add sanity test for skills installation
Add a sanity test that verifies the skills CLI installation works:
- Runs `npx skills add . -a claude-code -y` using current directory
- Checks command doesn't fail (exit code 0)
- Verifies .claude/skills directory is created
- Dynamically discovers skills in the repo and verifies they're installed
- Checks SKILL.md exists in each installed skill

The test runs on every push to main and pull requests.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 13:40:52 +00:00

71 lines
1.5 KiB
YAML

name: Skills CI
on:
push:
branches: [main]
pull_request:
jobs:
biome:
name: Format and Lint (Biome)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run Biome CI
run: npm run ci:check
validate-and-build:
name: Validate and Build Skills
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install dependencies
working-directory: packages/skills-build
run: npm install
- name: Validate all skills
working-directory: packages/skills-build
run: npm run validate
- name: Build all skills
working-directory: packages/skills-build
run: npm run build
- name: Check for uncommitted changes
run: |
if [[ -n $(git status --porcelain 'skills/*/AGENTS.md') ]]; then
echo "Error: AGENTS.md files are not up to date"
echo "Run 'npm run build' and commit the changes"
git diff skills/*/AGENTS.md
exit 1
fi
sanity-test:
name: Sanity Test (skills add)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run sanity tests
run: npm run test