From 363cf5306288b47ff462251ad5660aa1aba0be97 Mon Sep 17 00:00:00 2001 From: burnettk Date: Mon, 11 Jul 2022 17:30:50 -0400 Subject: [PATCH] move start keycloak to the front to make sure it has time to start up --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f1f5062..e9b019c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -51,6 +51,9 @@ jobs: with: repository: sartography/sample-process-models path: sample-process-models + - name: start_keycloak + working-directory: ./spiffworkflow-backend + run: ./bin/start_keycloak - name: start_backend working-directory: ./spiffworkflow-backend run: ./bin/build_and_run_with_docker_compose @@ -59,9 +62,6 @@ jobs: - name: start_frontend working-directory: ./spiffworkflow-frontend run: ./bin/build_and_run_with_docker_compose - - name: start_keycloak - working-directory: ./spiffworkflow-backend - run: ./bin/start_keycloak - name: wait_for_backend working-directory: ./spiffworkflow-backend run: ./bin/wait_for_server_to_be_up 5