feat(zql): support nested property access in JWTs #6736
Workflow file for this run
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: Perf Tests Smoke | |
on: | |
pull_request: | |
branches: [main] | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
benchmark-smoke: | |
name: Performance runner smoke test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
- run: npm ci | |
- name: Install Playwright Deps | |
run: npx playwright install --with-deps | |
- name: Run benchmark | |
working-directory: packages/replicache-perf | |
run: | | |
npm run build | |
npx tsx src/runner.ts --format=json --run='populate 1024x1000 \(clean, indexes: 0\)' | |
shell: bash |