Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Backend CI

on:
push:
Expand Down Expand Up @@ -79,4 +79,4 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion .github/workflows/deploy-render.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy to Render

on:
workflow_run:
workflows: ["CI"]
workflows: ["Backend CI"]
types: [completed]
branches: [main]

Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Frontend CI
on:
push:
branches: [main]
paths: ["frontend/**"]
pull_request:
branches: [main]
paths: ["frontend/**"]

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

- run: npm ci

- name: Lint
run: npm run lint

- name: Type check
run: npm run type-check --if-present

- name: Test
run: npm test --if-present

- name: Build
run: npm run build
env:
VITE_API_BASE_URL: ${{ vars.VITE_API_BASE_URL }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The project is built to demonstrate end-to-end product engineering: system desig
---

## Live Demo
- Frontend - [https://gatelog.vercel.app](https://gatelog.vercel.app)
- Frontend - [htts://gatelogapp.vercel.app](htts://gatelogapp.vercel.app)

---

Expand Down
1 change: 1 addition & 0 deletions frontend/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_API_BASE_URL = http://localhost:8080
75 changes: 0 additions & 75 deletions frontend/README.md

This file was deleted.

Loading
Loading