-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat(setup-elementor-env): init #10
Conversation
@@ -0,0 +1 @@ | |||
npx @github/local-action run "./actions/$1" index.ts "./actions/$1/.env" |
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.
does it need to be here instead of inlined in the package json?
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.
Not sure why, it does not work
actions/setup-elementor-env/main.ts
Outdated
@@ -54,7 +54,7 @@ export async function run() { | |||
'deactivate', | |||
experiments.off.join(','), | |||
], | |||
error: 'Failed to deactivate experiments', | |||
error: `Failed to deactivate experiments: : ${experiments.on.join(', ')}`, |
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.
error: `Failed to deactivate experiments: : ${experiments.on.join(', ')}`, | |
error: `Failed to deactivate experiments: ${experiments.on.join(', ')}`, |
No description provided.