Composer: bump wp-phpunit/wp-phpunit from 6.4.2 to 6.5.4 in the phpunit group #674
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: | |
branches: [develop, trunk] | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Check Coding Standards | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: ./.github/actions/node | |
- name: JS check | |
shell: bash | |
run: npm run lint:js | |
- name: WPCS check | |
uses: 10up/wpcs-action@stable | |
with: | |
enable_warnings: true | |
use_local_config: true |