Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UTOPIA-1349 Update passwords for individual IDIR #1441

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/app-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ jobs:
- name: Setup and Execute WebDriverIO e2e test suite
shell: bash
env:
mpoPass : ${{ secrets.TEST_IDIR_PASSWORD }}
mpoPass : ${{ secrets.MPO_IDIR_PASSWORD }}
cpoPass : ${{ secrets.CPO_IDIR_PASSWORD }}
drafterPass : ${{ secrets.DRAFT_IDIR_PASSWORD }}
run: |
cd ./src/frontend
npm install
mpoPass=$mpoPass npm run wdio-test
mpoPass=$mpoPass cpoPass=$cpoPass drafterPass=$drafterPass npm run wdio-test

#Generate Cucumber report and upload artifact
- name: Generate Cucumber report and upload artifact
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build-deploy-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,13 @@ jobs:
- name: Setup and Execute WebDriverIO e2e test suite
shell: bash
env:
mpoPass : ${{ secrets.TEST_IDIR_PASSWORD }}
mpoPass : ${{ secrets.MPO_IDIR_PASSWORD }}
cpoPass : ${{ secrets.CPO_IDIR_PASSWORD }}
drafterPass : ${{ secrets.DRAFT_IDIR_PASSWORD }}
run: |
cd ./src/frontend
npm install
mpoPass=$mpoPass npm run wdio-dev
mpoPass=$mpoPass cpoPass=$cpoPass drafterPass=$drafterPass npm run wdio-dev

DEV-Success-Notify:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/tag-deploy-app-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,13 @@ jobs:
- name: Setup and Execute WebDriverIO e2e test suite
shell: bash
env:
mpoPass : ${{ secrets.TEST_IDIR_PASSWORD }}
mpoPass : ${{ secrets.MPO_IDIR_PASSWORD }}
cpoPass : ${{ secrets.CPO_IDIR_PASSWORD }}
drafterPass : ${{ secrets.DRAFT_IDIR_PASSWORD }}
run: |
cd ./src/frontend
npm install
mpoPass=$mpoPass npm run wdio-test
mpoPass=$mpoPass cpoPass=$cpoPass drafterPass=$drafterPass npm run wdio-test

#Generate Cucumber report and upload artifact
- name: Generate Cucumber report and upload artifact
Expand Down
Loading
Loading