Update dependency @wordpress/scripts to v30 #377
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
PHP_VERSION: "7.4" | |
COMPOSER_VERSION: "2" | |
COMPOSER_CACHE: "${{ github.workspace }}/.composer-cache" | |
NODE_VERSION: "14" | |
NODE_CACHE: "${{ github.workspace }}/node_modules_cache" | |
jobs: | |
eslint: | |
name: eslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set standard cache directories | |
run: | | |
sudo npm config set cache "${{ env.NODE_CACHE }}" --global | |
- name: Prepare npm cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.NODE_CACHE }} | |
key: npm-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
npm-${{ env.NODE_VERSION }}- | |
- name: "install node v${{ env.NODE_VERSION }}" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: npm install | |
run: npm install | |
- name: eslint | |
run: npm run ci | |
phpcs: | |
name: phpcs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set standard cache directories | |
run: | | |
composer config -g cache-dir "${{ env.COMPOSER_CACHE }}" | |
- name: Prepare composer cache | |
uses: actions/cache@v3 | |
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: ${{ env.PHP_VERSION }} | |
- name: composer install | |
run: composer install | |
- name: PHPCS check | |
run: composer run lint |