Added steps to tests condition evaluation

This commit is contained in:
jamelreid 2022-01-15 13:58:25 -05:00
parent 37794b2b7c
commit 5dbf994d8e
1 changed files with 31 additions and 2 deletions

View File

@ -50,7 +50,7 @@ jobs:
UPDATE_WC: 1 UPDATE_WC: 1
DEFAULT_TIMEOUT_OVERRIDE: 120000 DEFAULT_TIMEOUT_OVERRIDE: 120000
run: | run: |
pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.js pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.j
- name: Post Smoke tests results comment on PR - name: Post Smoke tests results comment on PR
if: always() if: always()
@ -81,7 +81,7 @@ jobs:
UPDATE_WC: 1 UPDATE_WC: 1
DEFAULT_TIMEOUT_OVERRIDE: 120000 DEFAULT_TIMEOUT_OVERRIDE: 120000
run: | run: |
pnpx wc-e2e test:e2e pnpx wc-e2e test:e2e tests/e2e/specs/smoke-tests/update-woocommerce.j
- name: Post E2E tests results comment on PR - name: Post E2E tests results comment on PR
if: always() if: always()
@ -101,3 +101,32 @@ jobs:
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'run: smoke tests' labels: 'run: smoke tests'
- name: Remove label from pull request 2.
if: |
always() &&
${{ contains( github.event.pull_request.labels.*.name, format('run{0} smoke tests', ':')) }}
uses: actions-ecosystem/action-remove-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'run: smoke tests'
- name: Remove label from pull request 3.
if: |
${{ always()
&& contains( github.event.pull_request.labels.*.name, format('run{0} smoke tests', ':'))
}}
uses: actions-ecosystem/action-remove-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'run: smoke tests'
- name: Remove label from pull request 4.
if: |
always()
&& contains( github.event.pull_request.labels.*.name, format('run{0} smoke tests', ':'))
uses: actions-ecosystem/action-remove-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: 'run: smoke tests'