Skip to content

feat(zql): support nested property access in JWTs #6737

feat(zql): support nested property access in JWTs

feat(zql): support nested property access in JWTs #6737

Workflow file for this run

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