File tree Expand file tree Collapse file tree 6 files changed +94
-17
lines changed Expand file tree Collapse file tree 6 files changed +94
-17
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ jobs:
19
19
runs-on : ubuntu-24.04-arm
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v4
22
+ uses : actions/checkout@v5
23
23
with :
24
24
fetch-depth : 0
25
25
- name : Setup .NET Core
26
- uses : actions/setup-dotnet@v4
26
+ uses : actions/setup-dotnet@v5
27
27
with :
28
28
dotnet-version : 9.0.*
29
29
dotnet-quality : ga
Original file line number Diff line number Diff line change 26
26
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v4
29
+ uses : actions/checkout@v5
30
30
with :
31
31
fetch-depth : 0
32
32
36
36
run : " echo ref: ${{github.ref}} event: ${{github.event_name}}"
37
37
38
38
- name : Setup .NET Core
39
- uses : actions/setup-dotnet@v4
39
+ uses : actions/setup-dotnet@v5
40
40
with :
41
41
dotnet-version : 9.0.*
42
42
dotnet-quality : ga
@@ -55,12 +55,12 @@ jobs:
55
55
56
56
steps :
57
57
- name : Checkout
58
- uses : actions/checkout@v4
58
+ uses : actions/checkout@v5
59
59
with :
60
60
fetch-depth : 0
61
61
62
62
- name : Setup .NET Core
63
- uses : actions/setup-dotnet@v4
63
+ uses : actions/setup-dotnet@v5
64
64
with :
65
65
dotnet-version : 9.0.*
66
66
dotnet-quality : ga
@@ -119,12 +119,12 @@ jobs:
119
119
120
120
steps :
121
121
- name : Checkout
122
- uses : actions/checkout@v4
122
+ uses : actions/checkout@v5
123
123
with :
124
124
fetch-depth : 0
125
125
126
126
- name : Setup Node.js environment
127
- uses : actions/setup-node@v4
127
+ uses : actions/setup-node@v5
128
128
with :
129
129
node-version : 22
130
130
@@ -163,7 +163,7 @@ jobs:
163
163
164
164
steps :
165
165
- name : Checkout
166
- uses : actions/checkout@v4
166
+ uses : actions/checkout@v5
167
167
with :
168
168
fetch-depth : 0
169
169
@@ -261,7 +261,7 @@ jobs:
261
261
262
262
steps :
263
263
- name : Checkout
264
- uses : actions/checkout@v4
264
+ uses : actions/checkout@v5
265
265
with :
266
266
fetch-depth : 0
267
267
Original file line number Diff line number Diff line change
1
+ name : " Copilot Setup"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+ paths :
7
+ - .github/workflows/copilot-setup-steps.yml
8
+ pull_request :
9
+ paths :
10
+ - .github/workflows/copilot-setup-steps.yml
11
+
12
+ jobs :
13
+ copilot-setup-steps :
14
+ runs-on : ubuntu-latest
15
+
16
+ permissions :
17
+ contents : read
18
+
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@v5
22
+ with :
23
+ fetch-depth : 0
24
+
25
+ - name : Setup .NET Core
26
+ uses : actions/setup-dotnet@v5
27
+ with :
28
+ dotnet-version : 9.0.*
29
+ dotnet-quality : ga
30
+
31
+ - name : Start Services
32
+ working-directory : docker
33
+ run : docker compose up -d elasticsearch &
34
+
35
+ - uses : actions/cache@v4
36
+ with :
37
+ path : ~/.nuget/packages
38
+ key : nuget-${{ runner.os }}-${{ hashFiles('**/packages.lock.json') }}
39
+ restore-keys : |
40
+ nuget-${{ runner.os }}-
41
+
42
+ - name : Nuget Restore
43
+ run : dotnet restore
44
+
45
+ - name : Setup Node.js environment
46
+ uses : actions/setup-node@v5
47
+ with :
48
+ node-version : 22
49
+
50
+ - name : Cache node_modules
51
+ uses : actions/cache@v4
52
+ id : cache-node-modules
53
+ with :
54
+ path : src/Exceptionless.Web/ClientApp/node_modules
55
+ key : node-modules-${{ hashFiles('src/Exceptionless.Web/ClientApp/package-lock.json') }}
56
+
57
+ - name : Install Npm Packages
58
+ if : steps.cache-node-modules.outputs.cache-hit != 'true'
59
+ working-directory : src/Exceptionless.Web/ClientApp
60
+ run : npm ci
Original file line number Diff line number Diff line change 14
14
if : startsWith(github.ref, 'refs/tags/v') != true
15
15
16
16
steps :
17
- - uses : actions/checkout@v4
17
+ - uses : actions/checkout@v5
18
18
- name : Setup .NET Core
19
- uses : actions/setup-dotnet@v4
19
+ uses : actions/setup-dotnet@v5
20
20
with :
21
21
dotnet-version : 9.0.*
22
22
dotnet-quality : ga
Original file line number Diff line number Diff line change 14
14
if : startsWith(github.ref, 'refs/tags/v') != true
15
15
16
16
steps :
17
- - uses : actions/checkout@v4
17
+ - uses : actions/checkout@v5
18
18
- name : Setup .NET Core
19
- uses : actions/setup-dotnet@v4
19
+ uses : actions/setup-dotnet@v5
20
20
with :
21
21
dotnet-version : 9.0.*
22
22
dotnet-quality : ga
Original file line number Diff line number Diff line change 1
1
{
2
2
"servers" : {
3
+
4
+ "chrome-devtools" : {
5
+ "command" : " npx" ,
6
+ "args" : [
7
+ " chrome-devtools-mcp@latest"
8
+ ]
9
+ },
10
+ "context7" : {
11
+ "url" : " https://mcp.context7.com/mcp" ,
12
+ },
3
13
"ESLint" : {
4
14
"type" : " stdio" ,
5
15
"command" : " npx" ,
6
16
"args" : [" eslint" , " --mcp" ]
7
17
},
8
- "context7" : {
9
- "url" : " https://mcp.context7.com/mcp"
10
- }
18
+ "microsoft-docs" : {
19
+ "url" : " https://learn.microsoft.com/api/mcp"
20
+ },
21
+ "playwright" : {
22
+ "command" : " npx" ,
23
+ "args" : [
24
+ " @playwright/mcp@latest"
25
+ ],
26
+ "type" : " stdio"
27
+ }
11
28
}
12
29
}
You can’t perform that action at this time.
0 commit comments