Commit 018deee 1 parent 9654c7d commit 018deee Copy full SHA for 018deee
File tree 6 files changed +45
-1
lines changed
6 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1
1
builds :
2
+ - name : Explorer Frontend
3
+ path : explorer/frontend
4
+
2
5
- name : Explorer Nodewatch
3
6
path : explorer/nodewatch
4
7
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ coverage:
6
6
default :
7
7
target : 95% # overall project / repo coverage
8
8
9
+ explorer-frontend :
10
+ target : auto
11
+ threshold : 1%
12
+ flags :
13
+ - explorer-frontend
14
+
9
15
explorer-nodewatch :
10
16
target : auto
11
17
threshold : 1%
@@ -61,6 +67,11 @@ coverage:
61
67
# monorepo. This allows code coverage per package.
62
68
63
69
flags :
70
+ explorer-frontend :
71
+ paths :
72
+ - explorer/frontend
73
+ carryforward : true
74
+
64
75
explorer-nodewatch :
65
76
paths :
66
77
- explorer/nodewatch
Original file line number Diff line number Diff line change @@ -17,6 +17,24 @@ updates:
17
17
- minor
18
18
- patch
19
19
20
+ - package-ecosystem : npm
21
+ directory : /explorer/frontend
22
+ schedule :
23
+ interval : weekly
24
+ day : sunday
25
+ target-branch : dev
26
+ labels : [Explorer Frontend]
27
+ versioning-strategy : increase-if-necessary
28
+ commit-message :
29
+ prefix : ' [dependency]'
30
+ groups :
31
+ explorer-frontend-dependencies :
32
+ patterns :
33
+ - ' *'
34
+ update-types :
35
+ - minor
36
+ - patch
37
+
20
38
- package-ecosystem : pip
21
39
directory : /explorer/nodewatch
22
40
schedule :
Original file line number Diff line number Diff line change 1
1
defaultCiPipeline {
2
- platform = [' ubuntu' ]
2
+ operatingSystem = [' ubuntu' ]
3
+ instanceSize = ' medium'
4
+
3
5
ciBuildDockerfile = ' javascript.Dockerfile'
4
6
5
7
packageId = ' explorer-frontend'
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ # generate version.txt to be used in publishing
6
+ echo $( npm run version --silent) > version.txt
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ npm run build
4
+ serve -s build
You can’t perform that action at this time.
0 commit comments