Skip to content

Merge pull request #1202 from Automattic/dependabot/github_actions/ac… #46

Merge pull request #1202 from Automattic/dependabot/github_actions/ac…

Merge pull request #1202 from Automattic/dependabot/github_actions/ac… #46

Workflow file for this run

name: Behat Tests
on:
pull_request:
paths:
- '.github/workflows/behat.yml'
- '**.php'
- '**.feature'
- 'behat.yml'
- 'composer.json'
- '.wp-env.json'
push:
branches:
- develop
- main
paths:
- '.github/workflows/behat.yml'
- '**.php'
- '**.feature'
- 'behat.yml'
- 'composer.json'
- '.wp-env.json'
workflow_dispatch:
permissions:
contents: read
jobs:
behat:
name: Behat Tests (WP trunk, PHP 8.4)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install wordpress environment
run: npm install -g @wordpress/env
- name: Set up PHP 8.4
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
with:
php-version: '8.4'
coverage: none
- name: Install Composer dependencies
uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
- name: Setup wp-env
run: wp-env start
- name: Run Behat tests
run: composer behat
- name: Rerun failed tests
if: failure()
run: composer behat-rerun