Skip to content

Commit f4feb5d

Browse files
Revert "Remove e2e test execution"
This reverts commit 9c3cb46.
1 parent 3908421 commit f4feb5d

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ jobs:
2828
- run: npm version
2929
- run: npm install
3030
- run: npm test
31+
- run: npm run e2e
32+
env:
33+
E2E_CLIENT_ID: ${{ secrets.E2E_CLIENT_ID }}
34+
E2E_CLIENT_SECRET: ${{ secrets.E2E_CLIENT_SECRET }}
35+
E2E_TA_EMAIL: ${{ secrets.E2E_TA_EMAIL }}
36+
E2E_IMS_ORG_ID: ${{ secrets.E2E_IMS_ORG_ID }}
37+
E2E_PRIVATE_KEY_B64: ${{ secrets.E2E_PRIVATE_KEY_B64 }}
3138
- run: npm run semantic-release-dry-run
3239
- name: Codecov
3340
uses: codecov/[email protected]

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ jobs:
2121
run: npm install
2222
- name: Test
2323
run: npm test
24+
- name: End to End Test
25+
run: npm run e2e
26+
env:
27+
E2E_CLIENT_ID: ${{ secrets.E2E_CLIENT_ID }}
28+
E2E_CLIENT_SECRET: ${{ secrets.E2E_CLIENT_SECRET }}
29+
E2E_TA_EMAIL: ${{ secrets.E2E_TA_EMAIL }}
30+
E2E_IMS_ORG_ID: ${{ secrets.E2E_IMS_ORG_ID }}
31+
E2E_PRIVATE_KEY_B64: ${{ secrets.E2E_PRIVATE_KEY_B64 }}
2432
- name: Codecov
2533
uses: codecov/[email protected]
2634
with:

0 commit comments

Comments
 (0)