Skip to content

Expose paywall object #14

Expose paywall object

Expose paywall object #14

Workflow file for this run

name: Test
on:
push:
env:
PHP_VERSION: 8.3
PLUGIN: wp-paywall
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Composer Cache
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install plugin
run: composer install
- name: Run lint test
run: composer run lint
- name: Install WP-ENV
run: npm -g i @wordpress/env
- name: Start WP-ENV
run: wp-env start
- name: Run tests
run: wp-env run tests-cli --env-cwd=wp-content/plugins/${{ env.PLUGIN }} ./vendor/bin/phpunit