mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-26 23:21:39 +01:00
* Create hardened docker image * Remove healthcheck that can't work * Pin action dependencies * Further cleanup and hardening * Fix broken hardened build * Enhance Dockerfile with healthcheck and optimizations Added healthcheck helper using a small Go file module and improved Dockerfile structure for readability. --------- Co-authored-by: Katos <7927609+katosdev@users.noreply.github.com>
28 lines
636 B
YAML
28 lines
636 B
YAML
name: Pull Request CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- vnext
|
|
|
|
paths:
|
|
- 'backend/**'
|
|
- 'frontend/**'
|
|
- '.github/workflows/partial-backend.yaml'
|
|
- '.github/workflows/partial-frontend.yaml'
|
|
- '.github/workflows/e2e-partial.yaml'
|
|
- '.github/workflows/pull-requests.yaml'
|
|
|
|
jobs:
|
|
backend-tests:
|
|
name: "Backend Server Tests"
|
|
uses: ./.github/workflows/partial-backend.yaml
|
|
|
|
frontend-tests:
|
|
name: "Frontend Tests"
|
|
uses: ./.github/workflows/partial-frontend.yaml
|
|
|
|
e2e-tests:
|
|
name: "End-to-End Playwright Tests"
|
|
uses: ./.github/workflows/e2e-partial.yaml |