-
Notifications
You must be signed in to change notification settings - Fork 542
54 lines (44 loc) · 1.6 KB
/
Copy pathci.yml
File metadata and controls
54 lines (44 loc) · 1.6 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
cache-dependency-path: skills/video-transcript-downloader/package-lock.json
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- 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: Test ClawSweeper status helper
run: skills/clawsweeper-status/scripts/clawsweeper-status.test.sh
- name: Test maintainer orchestrator worker boundary
run: scripts/test-maintainer-orchestrator-policy
- name: Build browser helper
run: |
bun install --frozen-lockfile
bun build scripts/browser-tools.ts --compile --target bun --outfile /tmp/browser-tools
/tmp/browser-tools --help
- 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