Additional fixes for the plugin check action #2
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: 'WordPress Plugin Check' | ||
on: # rebuild any PRs and trunk branch changes | ||
pull_request: | ||
push: | ||
branches: | ||
- trunk | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Run plugin check | ||
uses: wordpress/plugin-check-action@v1 | ||
exclude-directories: | | ||
Check failure on line 17 in .github/workflows/plugincheck.yml GitHub Actions / WordPress Plugin CheckInvalid workflow file
|
||
'./bin' | ||
'./.github' | ||
exclude-files: | | ||
'.gitmodules' | ||
'.gitattributes' | ||
'.editorconfig' | ||
'.eslintrc.js' |