Skip to content

feat(UI & API): Manage views in the frontend #18

feat(UI & API): Manage views in the frontend

feat(UI & API): Manage views in the frontend #18

Workflow file for this run

name: CI
on: [pull_request]
jobs:
changes:
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
permissions:
pull-requests: read
steps:
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
backend:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'requirements*.txt'
- '.github/workflows/backend.yml'
frontend:
- 'frontend/**'
- '.github/workflows/frontend.yml'
lint-all-files:
uses: ./.github/workflows/lint.yml
permissions:
contents: read
lint-and-test-backend:
needs: [lint-all-files, changes]
if: ${{ needs.changes.outputs.backend == 'true' }}
uses: ./.github/workflows/backend.yml
permissions:
contents: read
lint-and-test-frontend:
needs: [lint-all-files, changes]
if: ${{ needs.changes.outputs.frontend == 'true' }}
uses: ./.github/workflows/frontend.yml
permissions:
contents: read
pull-requests: write
ci-all-green:
needs:
- lint-all-files
- lint-and-test-backend
- lint-and-test-frontend
if: ${{ always() }}
runs-on: Ubuntu-latest
steps:
- shell: bash
run: |
[[ ${{ contains(needs.*.result, 'failure') }} = false ]]