Skip to content

Commit d5c743d

Browse files
authored
Merge branch 'main' into rust-1.80
2 parents d1ecf93 + 62fc1dc commit d5c743d

File tree

6 files changed

+286
-217
lines changed

6 files changed

+286
-217
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,14 @@ 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+
directory: "/"
13+
schedule:
14+
interval: "daily"
15+
open-pull-requests-limit: 0
16+
reviewers:
17+
- "SirCipher"
18+
- "horned-sphere"

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,3 +142,19 @@ 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+
include:
152+
- path: "stocks_simulated/ui"
153+
cmd: "npm install && npm run build"
154+
steps:
155+
- name: Checkout repository
156+
uses: actions/checkout@v2
157+
- name: Build UI
158+
run: |
159+
cd ${PWD}/example_apps/${{ matrix.path }}/
160+
${{ matrix.cmd }}

example_apps/stocks_simulated/ui/package-lock.json

Lines changed: 32 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example_apps/stocks_simulated/ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
},
1414
"dependencies": {
1515
"@swim/client": "4.0.0",
16-
"ag-grid-react": "31.0.3",
17-
"ag-grid-community": "31.0.3",
16+
"ag-grid-react": "32.0.2",
17+
"ag-grid-community": "32.0.2",
1818
"lodash-es": "^4.17.21",
1919
"react": "^18.2.0",
2020
"react-dom": "^18.2.0"

0 commit comments

Comments
 (0)