chore(deps-dev): Bump follow-redirects from 1.15.4 to 1.15.6 #402
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: Coding Standards | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
- 'release/**' | |
- 'feature/**' | |
- 'fix/**' | |
env: | |
PHP_VERSION: '8.0' | |
WP_MULTISITE: 0 | |
COMPOSER_VERSION: '2.6' | |
ACTION_VERSION: 3 | |
jobs: | |
check_linting: | |
name: Setup & Check Coding Standards | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
# https://github.com/marketplace/actions/checkout | |
uses: actions/checkout@v2 | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
if: ${{ !env.ACT }} | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer dependencies | |
if: ${{ !env.ACT }} | |
# https://github.com/marketplace/actions/cache | |
uses: actions/cache@v3 | |
env: | |
composer-cache-name: cache-composer | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-build-${{ env.composer-cache-name }}-v${{ env.ACTION_VERSION }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.composer-cache-name }}-v${{ env.ACTION_VERSION }}- | |
- name: Setup PHP & Composer Environment | |
# https://github.com/marketplace/actions/setup-php-action | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ env.PHP_VERSION }}" | |
tools: "composer:${{ env.COMPOSER_VERSION }}" | |
- name: Environment Check | |
run: php -v && composer --version | |
- name: Install Composer Dependencies | |
run: composer install | |
- name: Check WordPress Coding Standards | |
run: composer run-script lint |