Skip to content

Commit d3b75e7

Browse files
committed
Merge branch 'main' into copilot/fix-217570708-1087021690-efb63b60-92dd-4cfb-921f-3403c4059d59
2 parents 5333c46 + 070ffd9 commit d3b75e7

File tree

24 files changed

+5985
-1530
lines changed

24 files changed

+5985
-1530
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: "Copilot Setup Steps"
2+
3+
# Automatically run the setup steps when they are changed to allow for easy validation, and
4+
# allow manual testing through the repository's "Actions" tab
5+
on:
6+
workflow_dispatch:
7+
push:
8+
paths:
9+
- .github/workflows/copilot-setup-steps.yml
10+
pull_request:
11+
paths:
12+
- .github/workflows/copilot-setup-steps.yml
13+
14+
jobs:
15+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
16+
copilot-setup-steps:
17+
runs-on: ubuntu-latest
18+
19+
# Set the permissions to the lowest permissions possible needed for your steps.
20+
# Copilot will be given its own token for its operations.
21+
permissions:
22+
# Clone the repository to install dependencies
23+
contents: read
24+
25+
steps:
26+
- name: Checkout code
27+
uses: actions/checkout@v5
28+
29+
- name: Install pnpm
30+
uses: pnpm/action-setup@v4
31+
with:
32+
version: 9
33+
34+
- name: Set up Node.js
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: "20"
38+
cache: "pnpm"
39+
40+
- name: Install dependencies
41+
run: pnpm install --frozen-lockfile
42+
43+
- name: Build project
44+
run: pnpm run build
45+
46+
- name: Install lspec CLI globally
47+
run: pnpm link --global
48+
49+
- name: Verify lspec installation
50+
run: |
51+
echo "lspec version:"
52+
lspec --version
53+
echo ""
54+
echo "lspec is now available globally for Copilot coding agent to use"

DOCS-MIGRATION.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

docs-old/ORGANIZATION.md

Lines changed: 0 additions & 103 deletions
This file was deleted.

docs-old/README.md

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)