Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"

- run: npm install
- name: Install dependencies
run: npm ci --prefer-offline --no-audit --no-fund

- name: Run build benchmark
run: node scripts/benchmark.js 2>/dev/null > benchmark-result.json
Expand Down Expand Up @@ -91,8 +93,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"

- run: npm install
- name: Install dependencies
run: npm ci --prefer-offline --no-audit --no-fund

- name: Cache HuggingFace models
uses: actions/cache@v4
Expand Down Expand Up @@ -166,8 +170,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"

- run: npm install
- name: Install dependencies
run: npm ci --prefer-offline --no-audit --no-fund

- name: Run query benchmark
run: node scripts/query-benchmark.js 2>/dev/null > query-benchmark-result.json
Expand Down Expand Up @@ -229,8 +235,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"

- run: npm install
- name: Install dependencies
run: npm ci --prefer-offline --no-audit --no-fund

- name: Run incremental benchmark
run: node scripts/incremental-benchmark.js 2>/dev/null > incremental-benchmark-result.json
Expand Down