Skip to content

Merge pull request #40 from jamieblomerus/enlargeable-bugfix #7

Merge pull request #40 from jamieblomerus/enlargeable-bugfix

Merge pull request #40 from jamieblomerus/enlargeable-bugfix #7

Workflow file for this run

name: 'WordPress Plugin Check'
on:
pull_request:
push:
branches:
- trunk
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Composer
run: |
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
- name: Build plugin
run: |
./build.sh dev
mkdir mobile-bankid-integration
unzip build-dev.zip -d mobile-bankid-integration
- name: Run plugin check
uses: wordpress/plugin-check-action@v1
with:
build-dir: './mobile-bankid-integration'
exclude-directories: 'vendor'
exclude-checks: 'plugin_readme'