-
Notifications
You must be signed in to change notification settings - Fork 465
27 lines (21 loc) · 1.36 KB
/
copilot-setup-steps.yml
File metadata and controls
27 lines (21 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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