-
Notifications
You must be signed in to change notification settings - Fork 4
fix error wp.org #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix error wp.org #27
Changes from all commits
c60c135
7e3da00
55e9d9a
e914222
f6876ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,26 @@ | ||
| # Base config | ||
| WP_ROOT_FOLDER="/app/wordpress/" | ||
| WP_ROOT_FOLDER="/var/www/html/" | ||
| WP_ADMIN_PATH="/wp-admin" | ||
|
|
||
| # Site config | ||
| WP_URL="https://beasanitizefilename.lndo.site" | ||
| WP_DOMAIN="beasanitizefilename.lndo.site" | ||
| WP_URL="http://localhost:8889" | ||
| WP_DOMAIN="localhost" | ||
|
|
||
| # database config | ||
| DB_NAME="wordpress" | ||
| DB_HOST="database" | ||
| DB_USER="wordpress" | ||
| DB_PASSWORD="wordpress" | ||
| DB_HOST="mysql" | ||
| DB_USER="root" | ||
| DB_PASSWORD="password" | ||
| TABLE_PREFIX="wp_" | ||
|
|
||
| # Unit Tests | ||
| TEST_DB_NAME="wpTests" | ||
| TEST_DB_HOST="database" | ||
| TEST_DB_USER="wordpress" | ||
| TEST_DB_PASSWORD="wordpress" | ||
| TEST_DB_NAME="wordpress_test" | ||
| TEST_DB_HOST="mysql" | ||
| TEST_DB_USER="root" | ||
| TEST_DB_PASSWORD="password" | ||
| TEST_TABLE_PREFIX="wp_" | ||
|
|
||
| # Admin access config | ||
| ADMIN_EMAIL="admin@beasanitizefilename.lndo.site" | ||
| ADMIN_EMAIL="admin@example.com" | ||
| ADMIN_USERNAME=admin | ||
| ADMIN_PASSWORD=admin | ||
|
|
||
| # BrowserStack | ||
| # BROWSERSTACK_USERNAME_REAL= | ||
| # BROWSERSTACK_KEY= |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,11 @@ | ||
| /vendor | ||
| /node_modules | ||
| .env.local | ||
| /wordpress | ||
|
|
||
| codeception.yml | ||
| tests/acceptance.suite.yml | ||
| tests/functional.suite.yml | ||
| tests/unit.suite.yml | ||
| tests/wpunit.suite.yml | ||
| .wp-env.override.json | ||
| .phpunit.result.cache | ||
|
|
||
| .idea/ | ||
| .DS_STORE |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "core": "WordPress/WordPress", | ||
| "phpVersion": "8.0", | ||
| "plugins": [ | ||
| "." | ||
| ], | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate plugin mount in wp-env configurationMedium Severity The Additional Locations (1) |
||
| "mappings": { | ||
| "wp-content/plugins/bea-sanitize-filename": "." | ||
| }, | ||
| "env": { | ||
| "tests": { | ||
| "phpVersion": "8.0", | ||
| "mappings": { | ||
| "wp-content/plugins/bea-sanitize-filename": "." | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file was deleted.
This file was deleted.
This file was deleted.


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Outdated checkout action version in tests workflow
Medium Severity
The tests workflow uses
actions/checkout@v2while the release workflow was updated toactions/checkout@v4in the same PR.v2relies on Node.js 12, which GitHub Actions has deprecated and will eventually stop supporting, meaning this workflow will start failing. This is clearly an oversight since the rest of the workflow was heavily modernized.Additional Locations (1)
.github/workflows/release-version.yml#L14-L15