Add post: 2026-03-04-typesense-typesense.md #10500
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 Semantic Search (stub) | ||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| paths: | ||
| - 'docs/assets/js/sem.js' | ||
| - 'docs/assets/js/search.js' | ||
| - 'docs/_layouts/default.html' | ||
| - 'tests-e2e/**' | ||
| workflow_dispatch: {} | ||
| jobs: | ||
| e2e: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Start timer | ||
| run: echo "START=$EPOCHSECONDS" >> $GITHUB_ENV | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| - name: Install deps | ||
| working-directory: tests-e2e | ||
| run: | | ||
| npm ci | ||
| - name: Install Playwright browsers | ||
| working-directory: tests-e2e | ||
| run: | | ||
| npx playwright install --with-deps | ||
| - name: Run stubbed semantic e2e | ||
| env: | ||
| BASE: https://tom-doerr.github.io/repo_posts | ||
| working-directory: tests-e2e | ||
| run: | | ||
| npx playwright test --reporter=line | ||
| - name: Job runtime | ||
| if: always() | ||
| run: echo "Job runtime: $(( (EPOCHSECONDS-START+59)/60 )) min" >> $GITHUB_STEP_SUMMARY | ||