Skip to content

Commit 77f4b81

Browse files
DPC-5222 re-enable portal smoke test at new subdomain (#2936)
## 🎫 Ticket https://jira.cms.gov/browse/DPC-5222 ## 🛠 Changes - PACE certificate added to github runner trust store - Portal tests re-enabled ## ℹ️ Context We had to disable the smoke tests on the portal when we got the custom subdomains, as we needed to do some infrastructure updates for the runner to be able to hit them. ## 🧪 Validation Smoke tests successfully test the portal: https://github.com/CMSgov/dpc-app/actions/runs/22772177949
1 parent 1c478c6 commit 77f4b81

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/smoke-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
6464
with:
6565
go-version: '1.24.x'
66+
- name: Install PACE cert
67+
env:
68+
PACE_CERT: ${{ secrets.PACE_CERT }}
69+
run: |
70+
echo "${PACE_CERT}" > /etc/pki/ca-trust/source/anchors/pace.pem
71+
update-ca-trust
6672
- name: Build K6
6773
run: |
6874
# Install xk6

dpc-load-testing/smoke_test_workflows/portals.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ const portals = {
1414
signInPath: 'users/sign_in',
1515
protectedPath: 'organizations/foo/edit',
1616
signInText: 'Log in' },
17-
// TODO: Add PACE cert when running in GHA (DPC-5222) and add 'dev' and 'test' back
18-
'portal': { envs: ['local',],
17+
'portal': { envs: ['local', 'dev', 'test'],
1918
signInPath: 'users/sign_in',
2019
protectedPath: 'organizations',
2120
signInText: 'Sign in' },

0 commit comments

Comments
 (0)