Skip to content

Commit 7d42093

Browse files
authored
Merge branch 'dev' into renovate/typescript-eslint-monorepo
2 parents 351da6a + 4acc1c0 commit 7d42093

18 files changed

Lines changed: 246 additions & 67 deletions

.github/workflows/ci.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "main", "dev" ]
6+
pull_request:
7+
branches: [ "main", "dev" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [18.x, 20.x]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
cache: 'npm'
25+
26+
- name: Install dependencies
27+
run: npm ci
28+
29+
- name: Type check
30+
run: npm run build
31+
32+
- name: Lint
33+
run: npm run lint
34+
35+
- name: Build
36+
run: npm run build
37+
38+
# Add caching for faster builds
39+
- name: Cache node modules
40+
uses: actions/cache@v4
41+
with:
42+
path: ~/.npm
43+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
44+
restore-keys: |
45+
${{ runner.os }}-node-

.github/workflows/review.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: AI Code Review
2+
3+
on:
4+
pull_request:
5+
branches: [ "main", "dev" ]
6+
7+
jobs:
8+
ai-code-review:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v4
13+
- name: AI Code Review Action
14+
uses: villesau/ai-codereviewer@v2.7.0
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# mifos-gazelle-demo-runtime
22

3+
[![CI](https://github.com/openMF/mifos-gazelle-demo-runtime/actions/workflows/ci.yml/badge.svg)](https://github.com/openMF/mifos-gazelle-demo-runtime/actions/workflows/ci.yml)
4+
35
This repo contains the runtime environment for Mifo Gazelle Demos. This is currently WIP.
46

57
branch main - is release/stable code

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/gazelle.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Vite + React + TS</title>
88
</head>

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@tailwindcss/vite": "^4.1.10",
1515
"class-variance-authority": "^0.7.1",
1616
"clsx": "^2.1.1",
17-
"lucide-react": "^0.515.0",
17+
"lucide-react": "^0.522.0",
1818
"react": "^19.1.0",
1919
"react-dom": "^19.1.0",
2020
"tailwind-merge": "^3.3.1",

public/gazelle.svg

Lines changed: 1 addition & 0 deletions
Loading

public/mifos-gazelle-large.svg

Lines changed: 1 addition & 0 deletions
Loading

public/react.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)