This repository was archived by the owner on Jul 27, 2026. It is now read-only.
[hotfix] Bridge alert #28820
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Datadog UI tests | |
| on: | |
| issue_comment: | |
| types: [edited] | |
| jobs: | |
| datadog_ui_test: | |
| timeout-minutes: 30 | |
| runs-on: [self-hosted, linux] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14' | |
| - run: npm install -g @datadog/datadog-ci | |
| - name: Capture Vercel preview URL | |
| id: vercel_preview_url | |
| uses: aaron-binary/vercel-preview-url-action@master | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - run: datadog-ci synthetics run-tests | |
| env: | |
| SITE_URL: ${{ steps.vercel_preview_url.outputs.vercel_preview_url }} | |
| DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }} | |
| DATADOG_APP_KEY: ${{ secrets.DATADOG_APP_KEY }} | |
| DATADOG_SITE: ${{ secrets.DATADOG_SITE }} |