Skip to content

Commit 5fcaa40

Browse files
committed
fix: re-added-against-prod-step
1 parent f3fe4cb commit 5fcaa40

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/platform-pull-request.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,27 @@ jobs:
176176
strategy:
177177
matrix:
178178
runs-on: [depot-ubuntu-latest-16, depot-ubuntu-latest-arm-16]
179+
180+
run-tests:
181+
runs-on: depot-ubuntu-latest
182+
name: Run E2E Tests
183+
environment: production
184+
185+
steps:
186+
- name: Checkout PR head
187+
uses: actions/checkout@v4
188+
with:
189+
ref: ${{ github.event.pull_request.head.sha }}
190+
191+
- name: Show ref for sanity
192+
run: |
193+
echo "GITHUB_REF=$GITHUB_REF"
194+
echo "GITHUB_SHA=$GITHUB_SHA"
195+
git log -1 --oneline
196+
197+
- name: Run E2E tests against production
198+
uses: ./.github/actions/e2e-tests
199+
with:
200+
e2e_test_token: ${{ secrets.E2E_TEST_TOKEN }}
201+
slack_token: ${{ secrets.SLACK_TOKEN }}
202+
environment: prod

0 commit comments

Comments
 (0)