Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v6
with:
node-version: '24'
node-version: "24"
package-manager-cache: false
- name: Install & Setup Tools
run: |
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
echo "runs=$runs" >> "$GITHUB_OUTPUT"
- name: Run Benchmarks variations
env:
VLT_REGISTRY: https://registry.vlt.io/vlt/npm/
VLT_REGISTRY: https://registry.vlt.io/vlt-benchmarks/npm/
VLT_TOKEN: ${{ secrets.VLT_REGISTRY_AUTH_TOKEN }}
CODEARTIFACT_AUTH_TOKEN: ${{ steps.aws.outputs.token }}
CLOUDSMITH_REGISTRY: ${{ secrets.CLOUDSMITH_REGISTRY }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The installation tests we run today mimic a matrix of different variations (cold
Registry benchmarking is available in the `registry-clean` and `registry-lockfile` variations.

- `npm` (`https://registry.npmjs.org/`)
- `vlt` (`https://registry.vlt.io/vlt/npm/`)
- `vlt` (`https://registry.vlt.io/vlt-benchmarks/npm/`)
- `aws` (CodeArtifact benchmark registry)

Defaults:
Expand Down
2 changes: 1 addition & 1 deletion fixtures/babylon/vlt.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"workspaces": ["packages/**/*"],
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion fixtures/large/vlt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion fixtures/next/vlt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion fixtures/run/vlt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion fixtures/svelte/vlt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion fixtures/vue/vlt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"config": {
"registries": {
"npm": "https://registry.vlt.io/vlt/npm/"
"npm": "https://registry.vlt.io/vlt-benchmarks/npm/"
}
}
}
2 changes: 1 addition & 1 deletion scripts/registry/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ BENCH_NPM_INSTALL="npm install --prefer-online --no-audit --no-fund --no-update-

# Registry definitions
BENCH_REGISTRY_NPM_URL="https://registry.npmjs.org/"
BENCH_REGISTRY_VLT_URL="https://registry.vlt.io/vlt/npm/"
BENCH_REGISTRY_VLT_URL="https://registry.vlt.io/vlt-benchmarks/npm/"
BENCH_REGISTRY_VLT_URL_NPMRC_KEY="${BENCH_REGISTRY_VLT_URL#http*://}"
BENCH_REGISTRY_AWS_URL="https://vlt-451504312483.d.codeartifact.us-east-1.amazonaws.com/npm/code-artifact-benchmark-test/"
BENCH_REGISTRY_AWS_NPMRC_KEY="${BENCH_REGISTRY_AWS_URL#http*://}"
Expand Down
Loading