Skip to content

Commit

Permalink
ci: add workflow to run wp plugin checks (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
stklcode committed Oct 12, 2024
1 parent 22a0a5f commit b043f71
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.git
/.github
/.wordpress-org
/dist
/node_modules
/tests
/vendor
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.github export-ignore
/.wordpress-org export-ignore
/bin export-ignore
/dist export-ignore
/node_modules export-ignore
/tests export-ignore

Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/wordpress-plugin-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Plugin check
on:
push:
branches: [ 'stable', 'release/*' ]
pull_request:
branches: [ 'stable' ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer

- name: Build
run: composer install --no-interaction

- name: Package plugin
run: |
mkdir -p ./dist
rsync -rc --exclude-from=.distignore ./ ./dist/antivirus --delete --delete-excluded
- name: Check WP plugin
uses: wordpress/plugin-check-action@v1
with:
build-dir: ./dist/antivirus
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.idea/
css/*.min.css
dist/
js/*.min.js
vendor/
node_modules/
Expand Down

0 comments on commit b043f71

Please sign in to comment.