preview #214
This file contains 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: 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 }} |