mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-28 16:06:37 +01:00
34 lines
722 B
YAML
34 lines
722 B
YAML
name: Pull Request CI
|
|
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
pull-requests: write
|
|
|
|
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 |