Skip to content

Workflows

Workflows #2

name: Check Image Build
on:
pull_request:
types: [opened, reopened, edited, synchronize]
branches: [ "release/**", "develop" ]
paths-ignore:
- '.github/**'
jobs:
frontend:
name: Check 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 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