schema-fix #11
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: Fix Specs | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_call: | |
| inputs: | |
| summary: | |
| required: true | |
| type: string | |
| jobs: | |
| fix-specs: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Install CodeMie CLI | |
| run: npm install -g @codemieai/code | |
| - name: Run codemie-code basic command | |
| run: | | |
| echo ${{ inputs.summary }} | |
| codemie profile login | |
| codemie-code --model claude-4-1-opus --task "Install concurrently dev dependency in package.json" | |
| git status |