There was an error while loading. Please reload this page.
1 parent f3fe4cb commit 5fcaa40Copy full SHA for 5fcaa40
1 file changed
.github/workflows/platform-pull-request.yml
@@ -176,3 +176,27 @@ jobs:
176
strategy:
177
matrix:
178
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
200
+ e2e_test_token: ${{ secrets.E2E_TEST_TOKEN }}
201
+ slack_token: ${{ secrets.SLACK_TOKEN }}
202
+ environment: prod
0 commit comments