Skip to content

preview

preview #218

Workflow file for this run

name: preview
on: [deployment_status]
jobs:
e2e:
if: github.event.deployment_status.state == 'success'
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: 🏗 Setup Repository
uses: actions/checkout@v4
- name: 📦 Install
uses: ./.github/actions/install
- name: 📦 Install Playwright Deps
run: bunx playwright install --with-deps
- name: ✅ e2e
run: bun turbo e2e
env:
BASE_URL: ${{ github.event.deployment_status.environment_url }}