Skip to content

Commit

Permalink
Move idp initialization before dashbaord run up
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Liang <[email protected]>
  • Loading branch information
RyanL1997 committed Nov 22, 2023
1 parent a342603 commit b7a5c4c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/cypress-test-saml-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,15 @@ jobs:
with:
plugin_name: security-dashboards-plugin

# Setup and Run SAML Idp
- name: Get and run SAML Idp on Linux
if: ${{ runner.os == 'Linux' }}
run: |
cd ./OpenSearch-Dashboards/plugins/security-dashboards-plugin
ls
pwd
yarn pretest:jest_server
# Configure the Dashboard for SAML setup
- name: Configure and Run OpenSearch Dashboards with SAML Configuration
if: ${{ runner.os == 'Linux' }}
Expand All @@ -152,14 +161,6 @@ jobs:
nohup yarn start --no-base-path --no-watch &
sleep 600
# Setup and Run SAML Idp
- name: Get and run SAML Idp on Linux
run: |
cd ./OpenSearch-Dashboards/plugins/security-dashboards-plugin
ls
pwd
yarn pretest:jest_server
- name: Run Cypress
run : |
yarn add cypress --save-dev
Expand Down

0 comments on commit b7a5c4c

Please sign in to comment.