Keep a DRY README.md for wordpress.org & Github #30
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.org plugin directory guidelines' | |
on: # rebuild any PRs and main branch changes | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
wp-org-plugin-guidelines: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: latest | |
coverage: none | |
tools: wp-cli | |
- name: Install latest version of dist-archive-command | |
run: wp package install wp-cli/dist-archive-command:dev-main | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
# Make sure to use the same version like WordPress/gutenberg. | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Build plugin | |
run: | | |
npm run build | |
wp dist-archive . ./gatherpress.zip | |
mkdir tmp-build | |
unzip gatherpress.zip -d tmp-build | |
- name: Run plugin check | |
uses: swissspidy/wp-plugin-check-action@main | |
with: | |
build-dir: './tmp-build/gatherpress' | |
wp-version: 'trunk' |