Skip to content

Commit d288f4a

Browse files
committed
build: fix local-run input issue
1 parent 07dbff5 commit d288f4a

File tree

5 files changed

+20
-16
lines changed

5 files changed

+20
-16
lines changed

actions/run-lighthouse-tests/.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
ACTIONS_STEP_DEBUG=true
77

88
# GitHub Actions inputs should follow `INPUT_<name>` format (case-insensitive).
9-
INPUT_urls="
9+
INPUT_URLS="
1010
rquth:http://localhost:8889/react-query-under-the-hood/
1111
"
12-
INPUT_categories="
12+
INPUT_CATEGORIES="
1313
performance
1414
"
15-
INPUT_number-of-runs=3
16-
INPUT_skip-lhci-install="false"
15+
INPUT_NUMBER-OF-RUNS=3
16+
INPUT_SKIP-LHCI-INSTALL="false"
1717

1818
# GitHub Actions default environment variables. These are set for every run of a
1919
# workflow and can be used in your actions. Setting the value here will override

actions/setup-elementor-env/.env.example

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
ACTIONS_STEP_DEBUG=true
77

88
# GitHub Actions inputs should follow `INPUT_<name>` format (case-insensitive).
9-
INPUT_env=development
10-
INPUT_experiments="
9+
INPUT_ENV=development
10+
INPUT_ENABLE-SVG-UPLOAD=false
11+
INPUT_EXPERIMENTS="
1112
pages_panel:true
1213
e_nested_atomic_repeaters:false
1314
"
14-
INPUT_templates="
15+
INPUT_TEMPLATES="
1516
./elementor-templates
1617
"
1718

actions/setup-wp-env/.env.example

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
ACTIONS_STEP_DEBUG=true
77

88
# GitHub Actions inputs should follow `INPUT_<name>` format (case-insensitive).
9-
INPUT_wp=6.6
10-
INPUT_php=7.4
11-
INPUT_plugins="
9+
INPUT_WP=6.6
10+
INPUT_PHP=7.4
11+
INPUT_PLUGINS="
1212
https://downloads.wordpress.org/plugin/elementor.zip
1313
"
14-
INPUT_themes="
14+
INPUT_THEMES="
1515
https://downloads.wordpress.org/theme/hello-elementor.zip
1616
"
17-
INPUT_mappings="
17+
INPUT_MAPPINGS="
1818
elementor-templates:./stubs/elementor-templates
1919
"
20-
INPUT_active-theme=hello-elementor
21-
INPUT_skip-wp-env-install=false
20+
INPUT_ACTIVE-THEME=hello-elementor
21+
INPUT_SKIP-WP-ENV-INSTALL=false
2222

2323
# GitHub Actions default environment variables. These are set for every run of a
2424
# workflow and can be used in your actions. Setting the value here will override

actions/trickle-down-changelog/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ACTIONS_STEP_DEBUG=true
77

88
# GitHub Actions inputs should follow `INPUT_<name>` format (case-insensitive).
99
# if you want to run locally, token needs to be inputted, just don't merge it :)
10-
INPUT_token=""
10+
INPUT_TOKEN=""
1111

1212
# GitHub Actions default environment variables. These are set for every run of a
1313
# workflow and can be used in your actions. Setting the value here will override

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
"verbatimModuleSyntax": true,
1616
"strict": true,
1717
"noUncheckedIndexedAccess": true,
18-
"noImplicitOverride": true
18+
"noImplicitOverride": true,
19+
"paths": {
20+
"@elementor/*": ["./packages/*/src"]
21+
}
1922
}
2023
}

0 commit comments

Comments
 (0)