We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc05af7 + fdcf499 commit 4d4ed49Copy full SHA for 4d4ed49
.github/workflows/ci.yml
@@ -1,6 +1,17 @@
1
name: "CI: Build and Test"
2
3
on:
4
+ push:
5
+ branches: [main]
6
+ paths:
7
+ - "**.cs"
8
+ - "**.tsx"
9
+ - "**.js"
10
+ - "**.csproj"
11
+ - "**.props"
12
+ - "**.targets"
13
+ - "**.sln"
14
+ - "**/Client/**/*.json"
15
pull_request:
16
branches: [main]
17
paths:
@@ -29,10 +40,12 @@ jobs:
29
40
DOTNET_NOLOGO: 1
30
41
31
42
steps:
32
- - uses: actions/checkout@v3
43
+ - uses: actions/checkout@v4
44
+ with:
45
+ submodules: true
33
46
34
47
- name: Setup .NET
35
- uses: actions/setup-dotnet@v3
48
+ uses: actions/setup-dotnet@v4
36
49
with:
37
50
global-json-file: global.json
38
51
0 commit comments