docs: Add ADR-018 through ADR-023 and DDD for temporal tensor store #43
Workflow file for this run
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: Copilot Setup Steps | ||
| on: | ||
| workflow_call: | ||
| jobs: | ||
| copilot-setup: | ||
| runs-on: ubuntu-latest | ||
| environment: copilot | ||
| steps: | ||
| - name: Cleanup before git clone | ||
| run: rm -rf /home/runner/work/ruvector/ruvector | ||
| continue-on-error: true | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '18' | ||
| - name: Install ruvector dependencies | ||
| run: npm install -g ruvector | ||
| - name: Verify ruvector MCP | ||
| run: npx ruvector --version | ||