mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-16 20:15:46 -06:00
Fix broken JavaScript CI (#37007)
Closes #36998 Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
5
.github/actions/pnpm-setup/action.yml
vendored
5
.github/actions/pnpm-setup/action.yml
vendored
@@ -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:
|
||||
|
||||
3
.github/workflows/js-ci.yml
vendored
3
.github/workflows/js-ci.yml
vendored
@@ -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
|
||||
|
||||
@@ -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()}`;
|
||||
|
||||
Reference in New Issue
Block a user