Skip to content

feat(zero-schema): allow remapping column and table names #7158

feat(zero-schema): allow remapping column and table names

feat(zero-schema): allow remapping column and table names #7158

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-22.04
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