We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc90d3e commit 49b5edcCopy full SHA for 49b5edc
.github/workflows/stress-tests.yml
@@ -52,8 +52,16 @@ jobs:
52
run: npm run stress-test:validate
53
timeout-minutes: 5
54
55
+ - name: Install and build benchmark dependencies
56
+ run: |
57
+ cd benchmark
58
+ npm install
59
+ # Rebuild better-sqlite3 native bindings (npm install skips scripts due to .npmrc)
60
+ npm rebuild better-sqlite3
61
+ cd ..
62
+
63
- name: Run stress tests (CI mode)
- run: npm run stress-test:ci
64
+ run: tsx scripts/stress-test.ts --ci --output-file stress-test-results.json
65
timeout-minutes: 20
66
67
- name: Upload stress test results
0 commit comments