test: migrate E2E tests to Vitest Browser Mode #8010
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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 100 | |
| - uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: true | |
| - name: Install Dependencies | |
| run: vp install | |
| - name: Lint packages | |
| run: vp lint | |
| - name: Build packages | |
| run: vp run -r build | |
| - name: Run unit tests | |
| run: vp run -r test | |
| - name: Run Next.js integration test (production build) | |
| run: NEXTJS_TEST_MODE=build vp test run src/unit/nextjs/serverUtil.test.ts | |
| working-directory: tests | |
| - name: Upload webpack stats artifact (editor) | |
| uses: relative-ci/agent-upload-artifact-action@v2 | |
| with: | |
| webpackStatsFile: ./playground/dist/webpack-stats.json | |
| artifactName: relative-ci-artifacts-editor | |
| - name: Soft release | |
| id: soft-release | |
| run: vp dlx pkg-pr-new publish './packages/*' # TODO disabled only for AI branch--compact | |
| e2e-build: | |
| name: "E2E Build" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 100 | |
| - uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| # Example apps mounted by the e2e tests import the @blocknote/* packages' | |
| # built dist. | |
| - name: Build packages | |
| run: vp run --filter ./packages build | |
| - name: Upload package dist | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: e2e-package-dist | |
| path: packages/*/dist | |
| retention-days: 1 | |
| e2e: | |
| # Vitest Browser Mode runs in the Playwright Linux container — the same | |
| # environment as the local Docker run — so behaviour matches local dev. | |
| name: "E2E - ${{ matrix.browser }}" | |
| runs-on: ubuntu-latest | |
| needs: e2e-build | |
| timeout-minutes: 30 | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.51.1-noble | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| browser: [chromium, firefox, webkit] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 100 | |
| - uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version-file: ".node-version" | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| - name: Download package dist | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: e2e-package-dist | |
| path: packages | |
| # No preview server: Vitest Browser Mode serves the tests + mounted example | |
| # apps itself. `--browser` selects this matrix shard's browser. | |
| - name: Run e2e tests (${{ matrix.browser }}) | |
| run: HOME=/root vp test -c vite.config.browser.ts --run --browser ${{ matrix.browser }} | |
| working-directory: tests | |
| - name: Upload failure artifacts | |
| uses: actions/upload-artifact@v7 | |
| if: ${{ failure() }} | |
| with: | |
| name: e2e-attachments-${{ matrix.browser }} | |
| path: tests/.vitest-attachments/ | |
| retention-days: 7 |