-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (37 loc) · 1.38 KB
/
Copy pathvalidate.yml
File metadata and controls
50 lines (37 loc) · 1.38 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
name: Validate
on:
push:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Ignore local runner file mode noise
run: git config core.fileMode false
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Shell syntax checks
run: |
set -euo pipefail
bash -n scripts/read_version.sh
bash -n scripts/sync_version.sh
bash -n scripts/sync_claude_plugin_skills.sh
bash -n scripts/validate_claude_plugin.sh
bash -n scripts/validate_codex_plugin.sh
bash -n scripts/tests/version_sync_test.sh
- name: Validate portable skill pack
run: npx -y skills add . --list
- name: Run version sync regression test
run: ./scripts/tests/version_sync_test.sh
- name: Sync release version into manifests
run: ./scripts/sync_version.sh
- name: Sync generated Claude plugin skills
run: ./scripts/sync_claude_plugin_skills.sh
- name: Check generated plugin skills are committed
run: git diff --exit-code -- plugins/tla-workbenches/skills
- name: Validate Claude plugin metadata and generated skills
run: ./scripts/validate_claude_plugin.sh
- name: Validate Codex plugin metadata and generated skills
run: ./scripts/validate_codex_plugin.sh