Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion actions/release-tag-creation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ runs:
shell: bash
env:
ACTION_PATH: ${{ github.action_path }}
run: npm install --prefix "$ACTION_PATH"
run: |
cd "$ACTION_PATH/../.."
npm install --workspaces --include-workspace-root=false

- name: Handle version input
id: handle-version-input
Expand Down
1 change: 1 addition & 0 deletions actions/release-tag-creation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"test:watch": "vitest"
},
"dependencies": {
"@elementor/editor-github-actions-utils": "1.0.0",
"@actions/core": "^1.11.1",
"semver": "^7.7.2"
},
Expand Down
44 changes: 22 additions & 22 deletions actions/run-lighthouse-tests/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion actions/setup-elementor-env/dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions actions/setup-wp-env/dist/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/editor-github-actions-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"author": "Elementor Team",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"module": "dist/index.mjs",
"type": "module",
"main": "src/index.ts",
"private": true,
"scripts": {
"build": "tsup --config ./tsup.config.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/editor-github-actions-utils/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './inputs';
export * from './outputs';
export * from './version-files';
export * from './inputs.ts';
export * from './outputs.ts';
export * from './version-files.ts';
Loading