mirror of
https://github.com/WordPress/create-block-theme.git
synced 2026-02-28 12:37:19 +08:00
Some checks failed
Run checks / Lint (push) Failing after -8h1m22s
Run checks / Compute previous WordPress version (push) Successful in -8h1m22s
Run checks / PHP 7.4 (push) Failing after -8h1m22s
Run checks / PHP 7.4 (WP previous major version) (push) Failing after -8h1m22s
Run checks / PHP 8.0 (push) Failing after -8h1m22s
Run checks / PHP 8.0 (WP previous major version) (push) Failing after -8h1m22s
Run checks / PHP 8.1 (push) Failing after -8h1m22s
Run checks / PHP 8.1 (WP previous major version) (push) Failing after -8h1m22s
Run checks / E2E Tests (push) Failing after 7s
Run checks / PHP 8.2 (push) Failing after -8h1m22s
Run checks / PHP 8.2 (WP previous major version) (push) Failing after -8h1m22s
Run checks / PHP 8.3 (WP previous major version) (push) Failing after -8h1m22s
Run checks / PHP 8.3 (push) Failing after 5s
* Add e2e tests
* Add e2e tests to CI
* Fix lint errors
* Use psge.once()
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Remove unnecessary test
* Attempt to fix linting error
* Remove last()
* Delete test theme in afterAll
* Add @playwright/test
* Also delete the theme in the beforeAll step
* Test the theme was activated
* Also test opening the plugin sidebar
* Attempt to fix landing-page timeout
* Test that zip file was downloaded
* Align test scripts closer to GB
* Update specs/landing-page.spec.js
Co-authored-by: Jerry Jones <jones.jeremydavid@gmail.com>
* Revert "Update specs/landing-page.spec.js"
This reverts commit b0e688fea0.
* Only run delete theme command if theme exists
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Jerry Jones <jones.jeremydavid@gmail.com>
42 lines
716 B
Text
42 lines
716 B
Text
# ignore everything in the root except the "wp-content" directory.
|
|
!wp-content/
|
|
|
|
# ignore everything in the "wp-content" directory, except:
|
|
# "mu-plugins", "plugins", "themes" directory
|
|
wp-content/*
|
|
!wp-content/mu-plugins/
|
|
!wp-content/plugins/
|
|
!wp-content/themes/
|
|
|
|
# ignore these plugins
|
|
wp-content/plugins/hello.php
|
|
|
|
# ignore specific themes
|
|
wp-content/themes/twenty*/
|
|
|
|
# ignore dependency directories
|
|
node_modules/
|
|
vendor/
|
|
|
|
# ignore log files and databases
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
|
|
# ignore system files
|
|
.DS_Store
|
|
.vscode
|
|
|
|
# plugin build folder
|
|
build/
|
|
|
|
# Ignore local override files
|
|
.wp-env.override.json
|
|
|
|
# phpunit
|
|
*.result.*
|
|
|
|
dev-env/
|
|
|
|
# Playwright e2e test artifacts (screenshots, traces, test results)
|
|
artifacts/
|