From ce257eae23740473965217cd73c9d5312cf82f56 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Wed, 24 Aug 2022 13:13:59 +0000 Subject: [PATCH] fix: comment launch of readyness check --- --- a/.github/workflows/nodes-only-update.yml +++ b/.github/workflows/nodes-only-update.yml @@ -77,7 +77,7 @@ steps: - - name: Skip if pull request is in Draft +# - name: Skip if pull request is in Draft # `if: github.event.pull_request.draft == true` should be kept here, at # the step level, rather than at the job level. The latter is not # recommended because when the PR is moved from "Draft" to "Ready to @@ -92,8 +92,8 @@ # 4. Move it to "Ready for review"; now the workflow is passing (it was # skipped) and "Check reviews" is also passing (it won't be updated # until the workflow is finished) - if: github.event.pull_request.draft == true - run: exit 1 +# if: github.event.pull_request.draft == true +# run: exit 1 - name: Clean Workspace uses: AutoModality/action-clean@v1.1.0 @@ -196,7 +196,7 @@ yarn install yarn add mochawesome echo "Ready to start tests" - node scripts/readyness.js +# node scripts/readyness.js NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW} env: RPC_URL: http://127.0.0.1:9933/ @@ -272,7 +272,7 @@ yarn install yarn add mochawesome echo "Ready to start tests" - node scripts/readyness.js +# node scripts/readyness.js NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW} env: RPC_URL: http://127.0.0.1:9933/ -- gitstuff