Skip to content

Commit 29d90b7

Browse files
committed
schema-fix
1 parent 7d7702a commit 29d90b7

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

.github/workflows/fix-specs.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Fix Specs
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "specs/**/*.spec.md"
7+
- "packages/validate-specs/**"
8+
- ".github/workflows/validate-specs.yml"
9+
push:
10+
branches: [ main ]
11+
paths:
12+
- "specs/**/*.spec.md"
13+
- "packages/validate-specs/**"
14+
- ".github/workflows/validate-specs.yml"
15+
16+
jobs:
17+
fix-specs:
18+
name: Fix Specs
19+
runs-on: self-hosted
20+
21+
permissions:
22+
contents: read
23+
24+
steps:
25+
- name: Checkout repository
26+
uses: actions/checkout@v6
27+
28+
- name: Setup Node.js
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: 24
32+
33+
- name: Ensure codemie-code is available
34+
run: |
35+
if ! command -v codemie-code >/dev/null 2>&1; then
36+
bun add --global --dev @codemieai/code
37+
fi
38+
39+
- name: Run test
40+
run: |
41+
codemie-code --profile default "Hey! How are you?"

0 commit comments

Comments
 (0)