Internal: Enable cherry picking of Github workflows [TMZ-803] #153
Workflow file for this run
This file contains hidden or 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: Playwright Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| playwright-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| registry-url: 'https://npm.pkg.github.com' | |
| scope: '@elementor' | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| tools: composer | |
| coverage: none | |
| - name: Install Composer dependencies | |
| run: composer install --no-dev --no-scripts --optimize-autoloader | |
| - name: Install npm dependencies | |
| run: npm ci | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.CLOUD_DEVOPS_TOKEN }} | |
| - name: Build plugin | |
| run: npm run build:prod | |
| - name: Start wp-env | |
| run: npm run wp-env:start | |
| - name: Setup Playwright | |
| run: npm run test:setup:playwright | |
| - name: Setup Chromium | |
| run: npm run test:setup:chromium | |
| - name: Run Playwright tests | |
| id: playwright-tests | |
| run: | | |
| npm run test:playwright | |
| echo "exit_code=$?" >> $GITHUB_OUTPUT | |
| continue-on-error: false | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-test-results-${{ matrix.shardIndex }} | |
| path: ${{ inputs.path-to-results || 'test-results/' }} | |
| if-no-files-found: ignore | |
| retention-days: 2 | |
| - name: Check test results | |
| if: steps.playwright-tests.outcome == 'failure' | |
| run: | | |
| echo "❌ Playwright tests failed!" | |
| exit 1 | |
| - name: Stop wp-env | |
| if: always() | |
| run: npm run wp-env:stop |