Run pr-build-and-test on merge queue #6007
Workflow file for this run
This file contains 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] Build and Test" | ||
on: | ||
merge_group: | ||
types: [checks_requested] | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name != 'develop' && github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
permissions: | ||
id-token: write | ||
contents: read | ||
pull-requests: write | ||
jobs: | ||
determine-affected: | ||
name: "Turbo Affected" | ||
if: ${{!github.event.pull_request.head.repo.fork }} | ||
uses: LedgerHQ/ledger-live/.github/workflows/turbo-affected-reusable.yml@develop | ||
with: | ||
head_branch: ${{ github.event.pull_request.head.ref || github.event.merge_group.head_ref }} | ||
base_branch: ${{ github.event.pull_request.base.ref || github.event.merge_group.base_ref }} | ||
# LLD | ||
build-desktop: | ||
name: "Build Desktop" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'ledger-live-desktop') && !github.event.pull_request.head.repo.fork }} | ||
uses: LedgerHQ/ledger-live/.github/workflows/build-desktop-reusable.yml@develop | ||
secrets: inherit | ||
with: | ||
trigger-event-type: ${{ github.event_name }} | ||
Check failure on line 33 in .github/workflows/build-and-test-pr.yml GitHub Actions / [PR] Build and TestInvalid workflow file
|
||
test-desktop: | ||
name: "Test Desktop" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'ledger-live-desktop') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-desktop-reusable.yml@develop | ||
secrets: inherit | ||
with: | ||
trigger-event-type: ${{ github.event_name }} | ||
# LLM | ||
build-mobile: | ||
name: "Build Mobile" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'ledger-live-mobile') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/build-mobile-reusable.yml@develop | ||
secrets: inherit | ||
with: | ||
trigger-event-type: ${{ github.event_name }} | ||
test-mobile: | ||
name: "Test Mobile" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'ledger-live-mobile') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-mobile-reusable.yml@develop | ||
secrets: inherit | ||
test-mobile-e2e: | ||
name: "Test Mobile E2E" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'ledger-live-mobile') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-mobile-e2e-reusable.yml@develop | ||
secrets: inherit | ||
with: | ||
trigger-event-type: ${{ github.event_name }} | ||
# Tests | ||
test-libraries: | ||
name: "Test Libraries" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'libs') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-libs-reusable.yml@develop | ||
secrets: inherit | ||
with: | ||
trigger-event-type: ${{ github.event_name }} | ||
test-design-system: | ||
name: "Test Design System" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'libs/ui') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-design-system-reusable.yml@develop | ||
secrets: inherit | ||
build-web-tools: | ||
name: "Build Web Tools" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'apps/web-tools') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/build-web-tools-reusable.yml@develop | ||
secrets: inherit | ||
test-cli: | ||
name: "Test CLI" | ||
needs: determine-affected | ||
if: ${{contains(needs.determine-affected.outputs.paths, 'apps/cli') && !github.event.pull_request.head.repo.fork}} | ||
uses: LedgerHQ/ledger-live/.github/workflows/test-cli-reusable.yml@develop | ||
secrets: inherit | ||
# Final Check required | ||
ok: | ||
name: "OK" | ||
needs: | ||
- build-desktop | ||
- test-desktop | ||
- build-mobile | ||
- test-mobile | ||
- test-mobile-e2e | ||
- test-libraries | ||
- test-design-system | ||
- build-web-tools | ||
- test-cli | ||
runs-on: ubuntu-22.04 | ||
if: always() && !cancelled() | ||
steps: | ||
- name: Check result | ||
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') | ||
run: exit 1 |