File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
- strategy :
13
- matrix :
14
- dotnet : [6, 7, 8, 9]
15
12
16
13
steps :
17
14
- uses : actions/checkout@v4
18
15
19
16
- name : Setup .NET
20
17
uses : actions/setup-dotnet@v4
21
- id : setup-dotnet
22
18
with :
23
- dotnet-version : ${{ matrix.dotnet }}
24
-
19
+ dotnet-version : |
20
+ 10.0.x
21
+ 9.0.x
22
+ 8.0.x
23
+ 7.0.x
24
+ 6.0.x
25
+
26
+ - name : Display dotnet version
27
+ run : dotnet --version
28
+
25
29
- name : Setup Node.js
26
30
uses : actions/setup-node@v4
27
31
with :
28
- node-version : 18
32
+ node-version : 20
29
33
30
34
- name : Restore .NET dependencies
31
- run : dotnet restore ./ XtermBlazor/XtermBlazor.csproj
35
+ run : dotnet restore XtermBlazor
32
36
33
37
- name : Build .NET project
34
- run : dotnet build ./ XtermBlazor/XtermBlazor.csproj --no-restore
38
+ run : dotnet build XtermBlazor --no-restore
35
39
36
40
# - name: Test
37
41
# run: dotnet test XtermBlazor --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments