Skip to content

PR commit

PR commit #1585

---
name: PR commit
on:
merge_group:
pull_request:
branches:
- main
- 'release-*'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
check-vars:
name: Check vars
uses: ./.github/workflows/_check-vars-and-secrets.yml
with:
check-secrets: false
check-excluded-packages:
name: Check excluded packages
uses: ./.github/workflows/_check-excluded-packages.yml
code-formatting:
needs: [check-vars]
name: Check code formatting
uses: ./.github/workflows/_check-code-formatting.yml
unit-tests-and-static-checks:
name: Unit tests and clippy
uses: ./.github/workflows/_unit-tests-and-static-checks.yml
build-production-node-and-runtime:
name: Build production node and runtime
uses: ./.github/workflows/_build-production-node-and-runtime.yml
check-runtime-determinism:
needs: [build-production-node-and-runtime]
uses: ./.github/workflows/_check-runtime-determimism.yml
build-test-node-and-runtime:
name: Build test node and runtime
uses: ./.github/workflows/_build-test-node-and-runtime.yml

Check failure on line 45 in .github/workflows/on-pull-request-commit.yml

View workflow run for this annotation

GitHub Actions / PR commit

Invalid workflow file

error parsing called workflow ".github/workflows/on-pull-request-commit.yml" -> "./.github/workflows/_build-test-node-and-runtime.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
build-test-node-image-and-e2e-client-image:
needs: [build-test-node-and-runtime]
uses: ./.github/workflows/_build-test-node-and-e2e-client-image.yml
run-e2e-tests:
name: Run e2e tests
needs: [build-test-node-image-and-e2e-client-image]
uses: ./.github/workflows/_run-e2e-tests.yml
check-e2e-test-suite-completion:
needs: [run-e2e-tests]
name: Check e2e test suite completion
if: ${{ !cancelled() }}
runs-on: ubuntu-20.04
steps:
- name: All e2e tests completed
run: |
# due to the fact GitHub treats skipped jobs as success, and when any of dependant
# jobs fail, this check will be skipped, we need to check status manually
jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'