【石川さんRICKさん仕様確認待ち】投稿リストブロック・投稿リストスライダーブロックの「常に最初の投稿から表示する」が効かない不具合を修正【2人確認OK】 #1696
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: Playwright Tests | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [7.4,8.0,8.1] | |
services: | |
mysql: | |
image: mysql:5.7 | |
ports: | |
- 3306 | |
env: | |
MYSQL_ROOT_PASSWORD: wordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache multiple paths | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: install npm scripts | |
run: npm install | |
- name: install Composer Package | |
run: composer install | |
- name: Install WP-CLI | |
run: | | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
chmod +x wp-cli.phar | |
mv wp-cli.phar /usr/local/bin/wp | |
- name: Build | |
run: npm run build | |
- name: Run Environment | |
run: npx wp-env start | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
# タクソノミーのテストはワークフロー上だと環境の都合でうまく動作させられないので除外 | |
# ローカルで以下のコマンドで test/e2e/ 内のテストをすべて実行する | |
# npx wp-scripts test-playwright --trace on --project=chromium | |
- name: Run Playwright | |
run: | | |
npx wp-env clean | |
npx wp-scripts test-playwright --trace on --project=chromium login.spec.ts | |
npx wp-scripts test-playwright --trace on --project=chromium common-margin.spec.ts | |
npx wp-scripts test-playwright --trace on --project=chromium heading-transform.spec.ts | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |