Fix failing tests: Update install-wp-tests.sh, Cypress commands, and GitHub Actions workflows
This commit is contained in:
11
.github/actions/create-plugin-zip/action.yml
vendored
Normal file
11
.github/actions/create-plugin-zip/action.yml
vendored
Normal 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/**"
|
||||
Reference in New Issue
Block a user