Bump axios from 1.6.8 to 1.7.4 in the npm_and_yarn group across 1 directory #384
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: Test | |
on: | |
push: | |
branches: | |
- develop | |
- trunk | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: getong/[email protected] | |
- name: Set PHP version | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
coverage: none | |
- name: Install dependencies | |
run: composer install | |
- name: Setup WP Tests | |
run: bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 | |
- name: PHPUnit | |
run: './vendor/bin/phpunit' |