Fix broken JavaScript CI

Closes #36998

Signed-off-by: Jon Koops <jonkoops@gmail.com>
(cherry picked from commit 48a6450b730298a5b5fef68a1878ea07959fcac3)
This commit is contained in:
Jon Koops 2025-02-04 12:00:46 +01:00 committed by GitHub
parent f12de0546e
commit 67116a6b7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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()}`;