Add support for @defer and @stream
#12
Workflow file for this run
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: 🎭 E2E Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "e2e/**" | |
| - ".github/workflows/e2e-tests.yml" | |
| jobs: | |
| e2e-tests: | |
| name: 🎭 Run E2E Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: | | |
| cd e2e | |
| bun install | |
| - name: Install Playwright browsers | |
| run: | | |
| cd e2e | |
| bunx playwright install --with-deps | |
| - name: Run Playwright tests | |
| run: | | |
| cd e2e | |
| bun test | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: e2e/playwright-report/ | |
| retention-days: 30 |