schema-fix #5
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 ] | |
| jobs: | |
| fix-specs: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js (写谢褟 NPM) | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Install CodeMie CLI globally | |
| run: | | |
| npm install -g @codemieai/code | |
| - name: Check codemie version | |
| run: | | |
| codemie --version | |
| - name: Run codemie doctor | |
| run: | | |
| codemie doctor | |
| - name: Run codemie-code basic command | |
| run: | | |
| codemie-code "Echo test" || true |