Skip to content

Commit e1be278

Browse files
Copilotrebornix
andcommitted
Add .github/workflows/copilot-setup-steps.yml for Copilot agent environment setup
Co-authored-by: rebornix <876920+rebornix@users.noreply.github.com>
1 parent cedae5c commit e1be278

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Copilot Setup Steps
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
setup-environment:
11+
name: Setup Development Environment
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
lfs: true
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22.14.x'
23+
24+
- name: Setup Python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: '3.12'
28+
architecture: 'x64'
29+
30+
- name: Setup .NET
31+
uses: actions/setup-dotnet@v4
32+
with:
33+
dotnet-version: '10.0'
34+
35+
- name: Install Python setuptools
36+
run: pip install setuptools
37+
38+
- name: Install dependencies
39+
run: npm ci
40+
41+
- name: Check environment requirements
42+
run: npm run check-env
43+
44+
- name: Verify installation
45+
run: |
46+
node --version
47+
npm --version
48+
python --version
49+
dotnet --version

0 commit comments

Comments
 (0)