[ アニメーション / 固定表示 / Outer ] X-T9で フル幅/ワイド配置を可能にし、全幅や幅広のブロックを該当ブロックでラップしたときに編集画面で全幅や幅広にならないのを修正しました #3576
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Deprecated Test and Lint | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
env: | |
plugin_name: vk-blocks-pro | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js (.node-version) | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: Setup PHP 7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
- name: Install NPM Scripts | |
run: npm install | |
- name: Install Composer Package ( no-dev ) | |
run: composer install --no-dev | |
- name: Install @wordpress/env | |
run: npm install -g @wordpress/env | |
- name: Run @wordpress/env | |
run: npx wp-env start | |
- 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 | |
# 各ブロックのlintを実行 | |
- name: Run lint. | |
run: | | |
npm run lint | |
# 後方互換テスト実行 | |
- name: Run deprecated test. | |
run: | | |
npm run test-unit |