git.delta.rocks / unique-network / refs/commits / 0ad755cfb49f

difftreelog

add yarn-dev to master

Konstantin Astakhov2022-12-15parent: #4155ba0.patch.diff
in: master

1 file changed

modified.github/workflows/ci-master.ymldiffbeforeafterboth
before · .github/workflows/ci-master.yml
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  unit-test:20    uses: ./.github/workflows/unit-test.yml2122  node-only-update:23    uses: ./.github/workflows/node-only-update.yml2425  forkless:26    uses: ./.github/workflows/forkless.yml2728  # canary:29  #   uses: ./.github/workflows/canary.yml30  #   secrets: inherit # pass all secrets from initial workflow to nested3132  xcm:33    uses: ./.github/workflows/xcm.yml34    secrets: inherit # pass all secrets from initial workflow to nested3536  # testnet:37  #   uses: ./.github/workflows/testnet-build.yml38  #   secrets: inherit # pass all secrets from initial workflow to nested3940  codestyle:41    uses: ./.github/workflows/codestyle.yml
after · .github/workflows/ci-master.yml
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 nested3839  # testnet:40  #   uses: ./.github/workflows/testnet-build.yml41  #   secrets: inherit # pass all secrets from initial workflow to nested4243  codestyle:44    uses: ./.github/workflows/codestyle.yml