Merge pull request #806 from 10up/feature/plugin-check-action #1856
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: Linting | |
env: | |
COMPOSER_VERSION: "2" | |
COMPOSER_CACHE: "${{ github.workspace }}/.composer-cache" | |
on: | |
push: | |
branches: | |
- develop | |
- trunk | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
eslint: | |
name: eslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- name: Install node dependencies | |
run: npm ci --no-optional | |
- name: Get updated JS files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
**/*.js | |
**/*.json | |
- name: Run JS linting | |
run: | | |
if [[ "${{ steps.changed-files.outputs.any_changed }}" == 'true' && "${{ github.event_name }}" == "pull_request" ]]; then | |
npx wp-scripts lint-js ${{ steps.changed-files.outputs.all_changed_files }} | |
elif [[ "${{ github.event_name }}" == "push" ]]; then | |
npm run lint:js | |
fi | |
phpcs: | |
name: phpcs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set standard cache directories | |
run: | | |
composer config -g cache-dir "${{ env.COMPOSER_CACHE }}" | |
- name: Prepare composer cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.COMPOSER_CACHE }} | |
key: composer-${{ env.COMPOSER_VERSION }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
composer-${{ env.COMPOSER_VERSION }}- | |
- name: Set PHP version | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
coverage: none | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer install | |
- name: Get updated PHP files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
**/*.php | |
- name: PHPCS check | |
run: | | |
if [[ "${{ steps.changed-files.outputs.any_changed }}" == 'true' && "${{ github.event_name }}" == "pull_request" ]]; then | |
./vendor/bin/phpcs ${{ steps.changed-files.outputs.all_changed_files }} -s --runtime-set testVersion 7.4- | |
elif [[ "${{ github.event_name }}" == "push" ]]; then | |
./vendor/bin/phpcs . -s --runtime-set testVersion 7.4- | |
fi | |
vipcs: | |
name: vipcs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: VIPCS check | |
uses: 10up/wpcs-action@stable | |
with: | |
enable_warnings: true | |
standard: 'WordPress-VIP-Go' | |
excludes: 'tests' |