Skip to content

E2E Tests

E2E Tests #69

Workflow file for this run

name: E2E Tests
on:
deployment_status:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
if: github.event.deployment_status.state == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install Playwright
run: npx playwright install --with-deps
- name: Determine Tenant Name
run: |
if [[ "${{ github.event.deployment_status.environment }}" == "Preview – agora-next-etherfi" ]]; then
echo "NEXT_PUBLIC_AGORA_INSTANCE_NAME=etherfi" >> $GITHUB_ENV
elif [[ "${{ github.event.deployment_status.environment }}" == "Preview – agora-next-ens" ]]; then
echo "NEXT_PUBLIC_AGORA_INSTANCE_NAME=ens" >> $GITHUB_ENV
elif [[ "${{ github.event.deployment_status.environment }}" == "Preview – agora-next" ]]; then
echo "NEXT_PUBLIC_AGORA_INSTANCE_NAME=optimism" >> $GITHUB_ENV
fi
# You can add more conditions as needed for other environments
- name: Run Playwright tests
run: npx playwright test
env:
PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }}
VERCEL_ENV: ${{ github.event.deployment_status.environment }}
NEXT_PUBLIC_AGORA_INSTANCE_NAME: ${{ env.NEXT_PUBLIC_AGORA_INSTANCE_NAME }}