Skip to content

Commit

Permalink
fix: generate query data in benchmark action (#2297)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaaa authored Feb 23, 2024
1 parent 8673649 commit 3d65968
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ jobs:
working-directory: ./e2e
run: pnpm run build

- name: Generate test data
- name: Generate bench bulk data
working-directory: ./e2e
run: pnpm run generate-bench-data-bulk

- name: Generate bench query data
working-directory: ./e2e
run: pnpm run generate-bench-data-query

- name: Run benchmarks
run: pnpm run bench
1 change: 1 addition & 0 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"build": "pnpm recursive run build",
"clean": "pnpm recursive run clean",
"generate-bench-data-bulk": "pnpm run --filter=test-data generate-bench-data-bulk",
"generate-bench-data-query": "pnpm run --filter=test-data generate-bench-data-query",
"playwright-install": "pnpx [email protected] install --with-deps chromium",
"test": "pnpm recursive run test",
"test:ci": "pnpm run test"
Expand Down

0 comments on commit 3d65968

Please sign in to comment.