From 2afc567658579b5c82d9fb87842ed8c12d944f8e Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Fri, 02 Sep 2022 15:06:27 +0000 Subject: [PATCH] fix: check tasks for develop and master workflows --- --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -12,27 +12,23 @@ jobs: yarn-test-dev: - if: ${{ github.event.pull_request.draft == 'false' }} uses: ./.github/workflows/dev-build-tests_v2.yml unit-test: - if: ${{ github.event.pull_request.draft == 'false' }} uses: ./.github/workflows/unit-test_v2.yml - - forkless: - if: ${{ contains( github.event.pull_request.labels.*.name, 'forkless') }} - uses: ./.github/workflows/forkless.yml canary: if: ${{ contains( github.event.pull_request.labels.*.name, 'canary') }} uses: ./.github/workflows/canary.yml secrets: inherit # pass all secrets - xcm: if: ${{ contains( github.event.pull_request.labels.*.name, 'xcm') }} uses: ./.github/workflows/xcm.yml secrets: inherit # pass all secrets codestyle: - uses: ./.github/workflows/codestyle_v2.yml \ No newline at end of file + uses: ./.github/workflows/codestyle_v2.yml + + yarn_eslint: + uses: ./.github/workflows/test_codestyle_v2.yml --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -12,11 +12,9 @@ jobs: unit-test: - if: ${{ github.event.pull_request.draft != 'true' }} uses: ./.github/workflows/unit-test_v2.yml node-only-update: - if: ${{ github.event.pull_request.draft == 'false' }} uses: ./.github/workflows/node-only-update_v2.yml forkless: @@ -34,5 +32,4 @@ secrets: inherit # pass all secrets codestyle: - if: ${{ github.event.pull_request.draft == 'false' }} uses: ./.github/workflows/codestyle_v2.yml \ No newline at end of file -- gitstuff