git.delta.rocks / unique-network / refs/commits / 511167181f0c

difftreelog

source

.github/workflows/ci-develop.yml1.0 KiBsourcehistory
1name: develop23on:4  pull_request:5    branches:6      - develop7    types:8      - opened9      - reopened10      - synchronize   #commit(s) pushed to the pull request11      - ready_for_review1213concurrency:14  group: ${{ github.workflow }}-${{ github.head_ref }}15  cancel-in-progress: true1617jobs:1819  yarn-test-dev:20    if: github.event.pull_request.draft == false21    uses: ./.github/workflows/dev-build-tests_v2.yml2223  unit-test:24    if: github.event.pull_request.draft == false25    uses: ./.github/workflows/unit-test_v2.yml2627  forkless:28    if: contains( github.event.pull_request.labels.*.name, 'forkless') 29    uses: ./.github/workflows/forkless.yml3031  canary:32    if: contains( github.event.pull_request.labels.*.name, 'canary')33    uses: ./.github/workflows/canary.yml34    secrets: inherit # pass all secrets353637  xcm:38    if: contains( github.event.pull_request.labels.*.name, 'xcm')39    uses: ./.github/workflows/xcm.yml40    secrets: inherit # pass all secrets4142  codestyle:43    uses: ./.github/workflows/codestyle_v2.yml