[Backport release-8.10.0-alpha1] fix(ci): install element-templates-cli in e2e-tests job#7124
Merged
chillleader merged 1 commit intoMay 4, 2026
Conversation
* fix(ci): install element-templates-cli in e2e-tests job The e2e-tests job runs on a fresh runner and was missing the element-templates-cli install step, causing all HttpTests to fail with 'No such file or directory'. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): pin Node.js 24 before installing element-templates-cli Both the setup and e2e-tests jobs install element-templates-cli via npm but relied on whatever Node/npm is preinstalled on ubuntu-latest. Add actions/setup-node@v6 with node-version: '24' before each npm install, matching .tool-versions and the other workflows (TEST_FEATURE_BRANCH, NIGHTLY_E2E). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> (cherry picked from commit e3bd30b)
1 task
Contributor
|
🎉 This pull request has been included in release Thank you for your contribution! 🚀 |
johnBgood
pushed a commit
that referenced
this pull request
May 20, 2026
* fix: bump Maven to 3.9.15 — 3.9.14 removed from Apache CDN (#7094) (#7096) (cherry picked from commit a924e02) Co-authored-by: Pavel Kotelevskii <38818382+chillleader@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> * ci: release version 8.10.0-alpha1-rc1 * fix(ci): install element-templates-cli in e2e-tests job (#7122) (#7124) * fix(ci): install element-templates-cli in e2e-tests job The e2e-tests job runs on a fresh runner and was missing the element-templates-cli install step, causing all HttpTests to fail with 'No such file or directory'. * fix(ci): pin Node.js 24 before installing element-templates-cli Both the setup and e2e-tests jobs install element-templates-cli via npm but relied on whatever Node/npm is preinstalled on ubuntu-latest. Add actions/setup-node@v6 with node-version: '24' before each npm install, matching .tool-versions and the other workflows (TEST_FEATURE_BRANCH, NIGHTLY_E2E). --------- (cherry picked from commit e3bd30b) Co-authored-by: Pavel Kotelevskii <38818382+chillleader@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: bump camunda client to 8.10.0-alpha1 * fix: adopt camunda-client 8.10 job-handling API changes Replace removed CommandWrapper / CommandExceptionHandlingStrategy with JobCallbackCommandWrapperFactory in the outbound runtime, and pass a JsonMapper to the now-mandatory VariableImpl constructor in tests. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * ci: release version 8.10.0-alpha1 --------- Co-authored-by: team-connectors-int-automation[bot] <195338911+team-connectors-int-automation[bot]@users.noreply.github.com> Co-authored-by: Pavel Kotelevskii <38818382+chillleader@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Pavel Kotelevskii <pavel.kotelevskii@camunda.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Backport of #7122 to
release-8.10.0-alpha1.