Skip to content

Commit c6b11ce

Browse files
committed
Adds UI building to github actions
1 parent 61a96a0 commit c6b11ce

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8-
# ignore:
9-
# - dependency-name: ""
8+
reviewers:
9+
- "SirCipher"
10+
- "horned-sphere"
11+
- package-ecosystem: "npm"
12+
open-pull-requests-limit: 0
13+
reviewers:
14+
- "SirCipher"
15+
- "horned-sphere"

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,17 @@ jobs:
142142
with:
143143
token: ${{ secrets.CODECOV_TOKEN }}
144144
fail_ci_if_error: true
145+
146+
build_uis:
147+
name: Build Example Application UIs
148+
runs-on: ubuntu-latest
149+
strategy:
150+
matrix:
151+
includes:
152+
- path: "stocks_simulated/ui"
153+
cmd: "npm install && npm run build"
154+
steps:
155+
- name: Build UI
156+
run: |
157+
cd example_apps/${{ matrix.path }}
158+
${{ matrix.cmd }}

0 commit comments

Comments
 (0)