ruvector/.github/workflows/copilot-setup-steps.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: mapping values are not allowed in this context
rUv d1a2ec1c93 fix: Add Copilot setup workflow with git clone cleanup step
Resolves the "already exists and is not an empty directory" error by:
- Adding a cleanup step to remove the directory before git clone
- Setting up Node.js for ruvector dependencies
- Installing and verifying ruvector MCP installation
2026-01-29 11:05:28 -05:00

27 lines
1.4 KiB
YAML

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