git.delta.rocks / unique-network / refs/commits / bcc1c229c277

difftreelog

source

.github/workflows/ci-master.yml1.3 KiBsourcehistory
1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2587656193/CI+Master2# Workflow which controls starts nested workflows.3name: master45# Triger: PR at 'master' branch with following types of events.6on:7  pull_request:8    branches: [ 'master' ]9    types: [ opened, reopened, synchronize, ready_for_review ]1011#Concurency group for control execution queue over github runners.12concurrency:13  group: ${{ github.workflow }}-${{ github.head_ref }}14  cancel-in-progress: true1516# List of a jobs included into Workflow.17jobs:1819  yarn-dev:20    uses: ./.github/workflows/yarn-dev.yml2122  unit-test:23    uses: ./.github/workflows/unit-test.yml2425  node-only-update:26    uses: ./.github/workflows/node-only-update.yml2728  forkless:29    uses: ./.github/workflows/forkless.yml3031  # canary:32  #   uses: ./.github/workflows/canary.yml33  #   secrets: inherit # pass all secrets from initial workflow to nested3435  xcm:36    uses: ./.github/workflows/xcm.yml37    secrets: inherit # pass all secrets from initial workflow to nested38    39  collator-selection:40    uses: ./.github/workflows/collator-selection.yml4142  # testnet:43  #   uses: ./.github/workflows/testnet-build.yml44  #   secrets: inherit # pass all secrets from initial workflow to nested4546  codestyle:47    uses: ./.github/workflows/codestyle.yml4849  polkadot-types:50    uses: ./.github/workflows/polkadot-types.yml