Commit 47f0bf6
committed
feat(ci): GitHub Actions workflow for skill lint enforcement
New .github/workflows/lint.yml runs scripts/lint-skills.ps1 -Strict on:
- push to master
- pull_request (any branch)
- workflow_dispatch (manual)
Uses ubuntu-latest with pre-installed pwsh (faster and cheaper than
windows-latest). Path filters limit runs to changes in skills/, the
lint script itself, or the workflow file. Concurrency group cancels
in-flight runs on the same ref.
Also add CI status and MIT License badges to README header.
Local verification: lint-skills.ps1 -Strict currently passes 24/24,
0 warnings, exit 0. The -Strict flag means CI fails on any warning,
not just errors — enforces the current clean baseline going forward
so future skill additions cannot silently degrade quality.1 parent 39d8a22 commit 47f0bf6
2 files changed
Lines changed: 39 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
3 | 6 | | |
4 | 7 | | |
5 | 8 | | |
| |||
0 commit comments