Skip to content

Commit 950654c

Browse files
Merge pull request #657 from adobe/issue/release-git-action-fails
Upgraded release node version to 16 (from 12)
2 parents 4bc87ad + f4feb5d commit 950654c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,19 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 12
19+
node-version: 16
2020
- name: Install dependencies
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)