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>
This commit is contained in:
Pedro Rodrigues
2026-01-28 16:29:23 +00:00
parent bec143f6ce
commit 0b8e84ef1f

View File

@@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: "20"
node-version: '20'
- name: Install dependencies
run: npm install
@@ -30,7 +30,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: "20"
node-version: '20'
- name: Install dependencies
working-directory: packages/skills-build
@@ -53,18 +53,18 @@ jobs:
exit 1
fi
test:
name: Test
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"
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run sanity tests
run: npm run test:sanity
run: npm run test