Headless E2E tests for renovate/playwright-monorepo #213
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Magento E2E Headless Tests with Playwright | |
run-name: Headless E2E tests for ${{ github.event.pull_request.head.ref}} | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- "projects/shopware/**" | |
branches: [main, develop] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'renovate[bot]' || github.actor != 'lgtm-com[bot]' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADYEN_AUTOMATION_BOT_TEST_ACCESS_TOKEN }} | |
steps: | |
- name: Run E2E Tests | |
run: gh workflow run e2e-test-dispatch.yml -R Adyen/adyen-magento2 -F testBranch=${{ github.event.pull_request.head.ref}} |