Skip to content

Refactor: streamline fetch requests and clean up imports in frontend … #185

Refactor: streamline fetch requests and clean up imports in frontend …

Refactor: streamline fetch requests and clean up imports in frontend … #185

name: Check Image Build
on:
pull_request:
types: [opened, reopened, edited, synchronize]
branches: [ "release/**", "develop" ]
paths-ignore:
- '.github/**'
jobs:
frontend:
name: Check Standalone Frontend Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Frontend Docker Image
run: docker build . --file services/frontend/Dockerfile --tag justnz/alertflow:frontend-test
backend:
name: Check Standalone Backend Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Backend Docker Image
run: docker build . --file services/backend/Dockerfile --tag justnz/alertflow:backend-test
alertflow:
name: Check AlertFlow Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build AlertFlow Docker Image
run: docker build . --file Dockerfile --tag justnz/alertflow:test