diff --git a/make-release.sh b/make-release.sh index c2e79d741d75..8d43b5016a35 100755 --- a/make-release.sh +++ b/make-release.sh @@ -81,6 +81,7 @@ bump_version () { jq ".\"dependencies\".\"@eclipse-che/che-devworkspace-generator\" = \"${NEXT_VERSION}\"" package.json > package.json.update mv package.json.update package.json fi + npm run prettier popd >/dev/null || exit COMMIT_MSG="chore: Bump to ${NEXT_VERSION} in ${BUMP_BRANCH}" @@ -162,6 +163,7 @@ pushd tests/e2e >/dev/null || exit jq ".\"dependencies\".\"@eclipse-che/che-devworkspace-generator\" = \"${VERSION}\"" package.json > package.json.update mv package.json.update package.json npm --no-git-tag-version version --allow-same-version "${VERSION}" +npm run prettier popd >/dev/null || exit docker build -t quay.io/eclipse/che-e2e:${VERSION} -f tests/e2e/build/dockerfiles/Dockerfile tests/e2e diff --git a/tests/e2e/specs/miscellaneous/CreateWorkspaceWithExistedName.spec.ts b/tests/e2e/specs/miscellaneous/CreateWorkspaceWithExistedName.spec.ts index c9111b9a5936..d7a68096f699 100644 --- a/tests/e2e/specs/miscellaneous/CreateWorkspaceWithExistedName.spec.ts +++ b/tests/e2e/specs/miscellaneous/CreateWorkspaceWithExistedName.spec.ts @@ -51,7 +51,7 @@ suite(`"Start workspace with existed workspace name" test`, function (): void { existedWorkspaceName = WorkspaceHandlingTests.getWorkspaceName(); await workspaceHandlingTests.stopWorkspace(existedWorkspaceName); await browserTabsUtil.closeAllTabsExceptCurrent(); - }); + }); test(`Create new workspace from the same ${stackName} stack`, async function (): Promise { existedWorkspaceName = WorkspaceHandlingTests.getWorkspaceName();