PR CI #12128
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR CI | |
| on: | |
| pull_request: | |
| branches: | |
| - mealie-next | |
| merge_group: | |
| types: [checks_requested] | |
| branches: | |
| - mealie-next | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pull-request-lint: | |
| name: "Lint PR" | |
| if: github.event_name == 'pull_request' | |
| uses: ./.github/workflows/pull-request-lint.yml | |
| backend-tests: | |
| name: "Backend Server Tests" | |
| uses: ./.github/workflows/test-backend.yml | |
| frontend-tests: | |
| name: "Frontend Tests" | |
| uses: ./.github/workflows/test-frontend.yml | |
| container-scanning: | |
| name: "Trivy Container Scanning" | |
| if: github.event_name == 'pull_request' | |
| uses: ./.github/workflows/partial-trivy-container-scanning.yml | |
| code-ql: | |
| name: "CodeQL" | |
| uses: ./.github/workflows/codeql.yml | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| build-package: | |
| name: "Build Python package" | |
| uses: ./.github/workflows/build-package.yml | |
| with: | |
| tag: e2e | |
| end-to-end: | |
| name: "End-to-End Tests" | |
| needs: build-package | |
| uses: ./.github/workflows/e2e.yml | |
| publish-image: | |
| name: "Publish PR Image" | |
| if: | | |
| github.event_name == 'pull_request' && | |
| contains(github.event.pull_request.labels.*.name, 'build-image') && | |
| github.repository == 'mealie-recipes/mealie' | |
| permissions: | |
| contents: read | |
| packages: write | |
| # The id-token write permission is needed to connect to Depot.dev | |
| # as part of the partial-builder.yml action. It needs to be declared | |
| # in the parent action, as noted here: | |
| # https://github.com/orgs/community/discussions/76409#discussioncomment-8131390 | |
| id-token: write | |
| needs: build-package | |
| uses: ./.github/workflows/publish.yml | |
| with: | |
| tag: pr-${{ github.event.pull_request.number }} | |
| secrets: | |
| DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} |