File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ name: Build
3
3
on :
4
4
push :
5
5
branches : [ master ]
6
+ paths-exclude : [ 'webapp/**' ]
6
7
pull_request :
7
- branches : [ master ]
8
+ branches : [ 'renovate/**' ]
9
+ paths-exclude : [ 'webapp/**' ]
8
10
9
11
jobs :
10
12
build :
Original file line number Diff line number Diff line change
1
+ name : Build webapp
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ paths : [ 'webapp/**' ]
7
+ pull_request :
8
+ branches : [ '"renovate/**' ]
9
+ paths : [ 'webapp/**' ]
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+
17
+ - name : Setup pnpm
18
+ uses : pnpm/action-setup@v4
19
+ with :
20
+ version : 9
21
+
22
+ - name : Setup node
23
+ uses : actions/setup-node@v4
24
+ with :
25
+ node-version : 20
26
+ cache : pnpm
27
+
28
+ - name : Install dependencies
29
+ run : pnpm install --frozen-lockfile
30
+
31
+ - name : Run build
32
+ run : pnpm run build
You can’t perform that action at this time.
0 commit comments