Skip to content

E2E Tests

E2E Tests #62

Workflow file for this run

name: E2E Tests
on:
deployment_status:
jobs:
run-e2es:
runs-on: ubuntu-latest
if: >
github.event_name == 'deployment_status' &&
github.event.deployment_status.state == 'success'
steps:
- name: Check environment URL
id: check_env
run: |
if [[ "${{ github.event.deployment_status.environment_url }}" == *"v4-staging"* ]]; then
echo "::set-output name=should_run_tests::true"
else
echo "::set-output name=should_run_tests::false"
echo "This deployment does not require E2E tests. Exiting..."
fi
- name: Checkout
if: steps.check_env.outputs.should_run_tests == 'true'
uses: actions/checkout@v3
- name: Set up pnpm
if: steps.check_env.outputs.should_run_tests == 'true'
uses: dydxprotocol/[email protected]
- name: Set up Node
if: steps.check_env.outputs.should_run_tests == 'true'
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
if: steps.check_env.outputs.should_run_tests == 'true'
run: |
pnpm install --loglevel warn --ignore-scripts --frozen-lockfile
tar -xzC public -f tradingview/tradingview.tgz # manually inline postinstall script
# disabled 4/30/25 because our api key expired and we need to pay for browserstack again
# - name: Run e2e tests
# if: steps.check_env.outputs.should_run_tests == 'true'
# env:
# BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
# BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
# E2E_ENVIRONMENT_PASSWORD: ${{ secrets.E2E_ENVIRONMENT_PASSWORD }}
# E2E_ENVIRONMENT_URL: ${{ github.event.deployment_status.environment_url }}
# run: pnpm exec wdio run ./wdio.conf.ts