Fix failing tests: Update install-wp-tests.sh, Cypress commands, and GitHub Actions workflows

This commit is contained in:
2025-04-23 04:26:06 +01:00
parent bb31e0e934
commit b1966067ea
20 changed files with 263 additions and 106 deletions

View File

@@ -0,0 +1,11 @@
name: 'Create Plugin Zip'
description: 'Creates a zip file of the WordPress plugin, excluding unnecessary files'
runs:
using: 'composite'
steps:
- name: Create plugin zip
shell: bash
run: |
mkdir -p dist
zip -r dist/plugin.zip . \
-x "node_modules/**" "dist/**" ".git/**" ".github/**" ".wiki/**"