chore: remove duplicated bundled skills #57
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: skills/video-transcript-downloader/package-lock.json | |
| - name: Check shell helper syntax | |
| run: | | |
| find skills -path '*/scripts/*' -type f -print0 | | |
| while IFS= read -r -d '' script; do | |
| if head -n 1 "$script" | grep -q 'bash'; then | |
| bash -n "$script" | |
| fi | |
| done | |
| - name: Install video transcript downloader dependencies | |
| working-directory: skills/video-transcript-downloader | |
| run: npm ci | |
| - name: Smoke video transcript downloader | |
| working-directory: skills/video-transcript-downloader | |
| run: | | |
| node -e "import('youtube-transcript-plus').then(m => { if (typeof m.YoutubeTranscript?.fetchTranscript !== 'function') process.exit(1); })" | |
| ./scripts/vtd.js transcript --help |