NPM(deps): Bump @wordpress/dom-ready from 3.35.0 to 3.38.0 #197
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: Cypress Tests | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- trunk | |
- develop | |
- release/* | |
- feature/* | |
- add/* | |
- update/* | |
- fix/* | |
- try/* | |
pull_request: | |
types: [opened, edited, reopened, ready_for_review] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run Cypress Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
coverage: none | |
tools: composer, cs2pr | |
- name: Setup workflow context | |
id: workflow | |
working-directory: ${{ runner.temp }} | |
env: | |
REPO: ${{ github.repository }} | |
run: | | |
mkdir dist | |
echo ::set-output name=DIST::${PWD}/dist | |
echo ::set-output name=PACKAGE::${REPO##*/} | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Get npm cache directory | |
id: npm-cache | |
run: echo "::set-output name=dir::$(npm config get cache)" | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.npm-cache.outputs.dir }} | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer vendor directory | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Show versions | |
run: | | |
php --version | |
composer --version | |
node --version | |
npm --version | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install PHP Dependencies | |
run: composer install --no-progress --no-dev --optimize-autoloader --prefer-dist | |
- name: NPM Install | |
run: npm install --legacy-peer-deps | |
- name: Build JavaScript | |
run: npm run build | |
- name: Create Distribution Copy | |
run: rsync -r --exclude-from=.distignore --include-from=.distinclude . ${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }} | |
- name: List Distribution Files | |
working-directory: ${{ steps.workflow.outputs.DIST }} | |
run: find . | |
- name: Configure WordPress | |
run: echo '{"config":{"WP_DEBUG_DISPLAY":false},"plugins":["${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}"]}' > .wp-env.override.json | |
- name: Install WordPress | |
run: npx @wordpress/env@latest start | |
- name: Run Cypress Tests | |
env: | |
RECORD_REPLAY_API_KEY: ${{ secrets.RECORD_REPLAY_API_KEY }} | |
if: ${{ github.repository != 'newfold-labs/wp-plugin-web' || env.RECORD_REPLAY_API_KEY == '' }} | |
run: npx cypress run | |
- name: Run Cypress Tests | |
uses: replayio/action-cypress@v0.3.1 | |
env: | |
RECORD_REPLAY_API_KEY: ${{ secrets.RECORD_REPLAY_API_KEY }} | |
if: ${{ github.repository == 'newfold-labs/wp-plugin-web' && env.RECORD_REPLAY_API_KEY != '' }} | |
with: | |
api-key: ${{ secrets.RECORD_REPLAY_API_KEY }} | |
browser: 'replay-chromium' | |
command: npm run test:e2e -- --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag web | |
upload-all: false | |
- name: List Replays | |
if: always() | |
shell: bash | |
run: npx @replayio/replay ls --json | |
- name: Store screenshots of test failures | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: screenshots | |
path: ./tests/cypress/screenshots | |
- name: Output debug.log file contents | |
if: ${{ always() }} | |
continue-on-error: true | |
run: npx wp-env run wordpress "cat /var/www/html/wp-content/debug.log" |