Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/reusable-performance-test-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
# - Configure environment variables.
# - Checkout repository.
# - Set up Node.js.
# - Set up PHP.
# - Log debug information.
# - Install npm dependencies.
# - Install Playwright browsers.
Expand Down Expand Up @@ -127,6 +128,14 @@ jobs:
node-version-file: '.nvmrc'
cache: npm

- name: Set up PHP
if: ${{ inputs.subject == 'base' }}
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
with:
php-version: ${{ inputs.php-version }}
tools: wp-cli
Comment thread
desrosj marked this conversation as resolved.
coverage: none

- name: Log debug information
run: |
npm --version
Expand Down Expand Up @@ -183,7 +192,7 @@ jobs:
if: ${{ inputs.subject == 'base' }}
run: |
VERSION="${BASE_TAG%.0}"
npm run env:cli -- core download --version="$VERSION" --force --path="/var/www/${LOCAL_DIR}"
wp core download --version="$VERSION" --force --path="${LOCAL_DIR}"

- name: Install object cache drop-in
if: ${{ inputs.memcached }}
Expand Down
Loading