Fix broken JavaScript CI (#37007)

Closes #36998

Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
Jon Koops
2025-02-04 10:23:27 +01:00
committed by GitHub
parent 5ea7825f1e
commit 48a6450b73
3 changed files with 9 additions and 2 deletions

View File

@@ -7,6 +7,11 @@ inputs:
required: false
default: "22"
env:
# Temporary workaround for https://github.com/nodejs/corepack/issues/612
# TODO: Remove this once the issue is fixed
COREPACK_INTEGRITY_KEYS: 0
runs:
using: composite
steps:

View File

@@ -12,6 +12,9 @@ on:
env:
MAVEN_ARGS: "-B -nsu -Daether.connector.http.connectionMaxTtl=25"
RETRY_COUNT: 3
# Temporary workaround for https://github.com/nodejs/corepack/issues/612
# TODO: Remove this once the issue is fixed
COREPACK_INTEGRITY_KEYS: 0
concurrency:
# Only cancel jobs for PR updates

View File

@@ -94,8 +94,7 @@ const userImportingDisabledFailMessage =
"User federation provider could not be saved: Can not disable Importing users when LDAP provider mode is UNSYNCED";
const ldapTestSuccessMsg = "Successfully connected to LDAP";
const ldapTestFailMsg =
"Error when trying to connect to LDAP: 'CommunicationError'";
const ldapTestFailMsg = "Error when trying to connect to LDAP: 'UnknownHost'";
describe("User Federation LDAP tests", () => {
const realmName = `ldap-realm-${crypto.randomUUID()}`;