From d288f4ac176ee4ee0c2b9a589ff8b07cfd7ae511 Mon Sep 17 00:00:00 2001 From: Nevo Golan <20494189+Nevoss@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:49:07 +0300 Subject: [PATCH 1/3] build: fix local-run input issue --- actions/run-lighthouse-tests/.env.example | 8 ++++---- actions/setup-elementor-env/.env.example | 7 ++++--- actions/setup-wp-env/.env.example | 14 +++++++------- actions/trickle-down-changelog/.env.example | 2 +- tsconfig.json | 5 ++++- 5 files changed, 20 insertions(+), 16 deletions(-) diff --git a/actions/run-lighthouse-tests/.env.example b/actions/run-lighthouse-tests/.env.example index d9c11139d..4d3e44734 100644 --- a/actions/run-lighthouse-tests/.env.example +++ b/actions/run-lighthouse-tests/.env.example @@ -6,14 +6,14 @@ ACTIONS_STEP_DEBUG=true # GitHub Actions inputs should follow `INPUT_` format (case-insensitive). -INPUT_urls=" +INPUT_URLS=" rquth:http://localhost:8889/react-query-under-the-hood/ " -INPUT_categories=" +INPUT_CATEGORIES=" performance " -INPUT_number-of-runs=3 -INPUT_skip-lhci-install="false" +INPUT_NUMBER-OF-RUNS=3 +INPUT_SKIP-LHCI-INSTALL="false" # GitHub Actions default environment variables. These are set for every run of a # workflow and can be used in your actions. Setting the value here will override diff --git a/actions/setup-elementor-env/.env.example b/actions/setup-elementor-env/.env.example index 03a3612a1..97cd80911 100644 --- a/actions/setup-elementor-env/.env.example +++ b/actions/setup-elementor-env/.env.example @@ -6,12 +6,13 @@ ACTIONS_STEP_DEBUG=true # GitHub Actions inputs should follow `INPUT_` format (case-insensitive). -INPUT_env=development -INPUT_experiments=" +INPUT_ENV=development +INPUT_ENABLE-SVG-UPLOAD=false +INPUT_EXPERIMENTS=" pages_panel:true e_nested_atomic_repeaters:false " -INPUT_templates=" +INPUT_TEMPLATES=" ./elementor-templates " diff --git a/actions/setup-wp-env/.env.example b/actions/setup-wp-env/.env.example index c22c710ea..6836db381 100644 --- a/actions/setup-wp-env/.env.example +++ b/actions/setup-wp-env/.env.example @@ -6,19 +6,19 @@ ACTIONS_STEP_DEBUG=true # GitHub Actions inputs should follow `INPUT_` format (case-insensitive). -INPUT_wp=6.6 -INPUT_php=7.4 -INPUT_plugins=" +INPUT_WP=6.6 +INPUT_PHP=7.4 +INPUT_PLUGINS=" https://downloads.wordpress.org/plugin/elementor.zip " -INPUT_themes=" +INPUT_THEMES=" https://downloads.wordpress.org/theme/hello-elementor.zip " -INPUT_mappings=" +INPUT_MAPPINGS=" elementor-templates:./stubs/elementor-templates " -INPUT_active-theme=hello-elementor -INPUT_skip-wp-env-install=false +INPUT_ACTIVE-THEME=hello-elementor +INPUT_SKIP-WP-ENV-INSTALL=false # GitHub Actions default environment variables. These are set for every run of a # workflow and can be used in your actions. Setting the value here will override diff --git a/actions/trickle-down-changelog/.env.example b/actions/trickle-down-changelog/.env.example index 528f12f95..ab63619b9 100644 --- a/actions/trickle-down-changelog/.env.example +++ b/actions/trickle-down-changelog/.env.example @@ -7,7 +7,7 @@ ACTIONS_STEP_DEBUG=true # GitHub Actions inputs should follow `INPUT_` format (case-insensitive). # if you want to run locally, token needs to be inputted, just don't merge it :) -INPUT_token="" +INPUT_TOKEN="" # GitHub Actions default environment variables. These are set for every run of a # workflow and can be used in your actions. Setting the value here will override diff --git a/tsconfig.json b/tsconfig.json index 249fca41a..9a83f7d99 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,9 @@ "verbatimModuleSyntax": true, "strict": true, "noUncheckedIndexedAccess": true, - "noImplicitOverride": true + "noImplicitOverride": true, + "paths": { + "@elementor/*": ["./packages/*/src"] + } } } From ce43fd67a5edc530b3f1bebee86c275c10c4f5da Mon Sep 17 00:00:00 2001 From: Nevo Golan <20494189+Nevoss@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:52:36 +0300 Subject: [PATCH 2/3] wip --- .github/workflows/test-actions.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-actions.yml b/.github/workflows/test-actions.yml index 171b6e721..ba5cad540 100644 --- a/.github/workflows/test-actions.yml +++ b/.github/workflows/test-actions.yml @@ -38,7 +38,6 @@ jobs: enable-svg-upload: true experiments: |- pages_panel:true - editor_v2:false templates: |- elementor-templates From 6a451b567560abcf04ea804f27e0cdadfc5d5bdd Mon Sep 17 00:00:00 2001 From: Nevo Golan <20494189+Nevoss@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:54:36 +0300 Subject: [PATCH 3/3] wip --- tsconfig.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9a83f7d99..249fca41a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,9 +15,6 @@ "verbatimModuleSyntax": true, "strict": true, "noUncheckedIndexedAccess": true, - "noImplicitOverride": true, - "paths": { - "@elementor/*": ["./packages/*/src"] - } + "noImplicitOverride": true } }