Migrate Cypress to Playwright #51
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: Run PHPCS, PHPLint, Psalm and Playwright | |
on: [pull_request, push] | |
jobs: | |
PHPCS: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPCS sniffs | |
run: ./vendor/bin/phpcs -i | |
- name: Show PHPCS version | |
run: ./vendor/bin/phpcs --version | |
- name: Run PHP_CodeSniffer | |
run: composer phpcs | |
PHPLint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPLint version info | |
run: ./vendor/bin/phplint --version | |
- name: Run PHPLint | |
run: composer phplint | |
Psalm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Show PHPCS sniffs | |
run: ./vendor/bin/phpcs -i | |
- name: Show version info | |
run: ./vendor/bin/psalm --version | |
- name: Run Psalm | |
run: composer psalm | |
Playwright: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install -g pnpm && pnpm install | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Start WordPress environment | |
run: npm run wp-env start | |
- name: Wait for WordPress environment to be ready | |
run: npx wait-on http://localhost:8888 | |
- name: Run Playwright tests | |
run: pnpm exec playwright test | |
- name: Upload Playwright Report | |
uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |