diff --git a/CHANGELOG.md b/CHANGELOG.md index 057e81fb..bfb730d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ project adheres to [Semantic Versioning](http://semver.org/). - ci: switch out deprecated benchmark-regression library for replacement - AggregatorRegistry renamed to ClusterRegistry, old name deprecated - chore: update faceoff to 1.1 +- ci: Run additional benchmarks against trunk ### Added diff --git a/benchmarks/index.js b/benchmarks/index.js index f6d4324e..83ccd388 100644 --- a/benchmarks/index.js +++ b/benchmarks/index.js @@ -13,9 +13,9 @@ const debug = require('debug')('benchmark'); */ const benchmarks = new Benchmark({ - 'prom-client@latest': 'prom-client@latest', - 'prom-client@trunk': 'git@github.com:siimon/prom-client', - 'prom-client@current': { location: process.cwd() }, + released: 'prom-client@latest', + trunk: 'git@github.com:siimon/prom-client', + current: { location: process.cwd() }, }); benchmarks.suite('counter', require('./counter')); diff --git a/benchmarks/util.js b/benchmarks/util.js index 2d0c41cb..d1be1134 100644 --- a/benchmarks/util.js +++ b/benchmarks/util.js @@ -5,7 +5,7 @@ const Path = require('path'); module.exports = setupUtilSuite; function setupUtilSuite(suite) { - const skip = ['prom-client@latest', 'prom-client@trunk']; + const skip = ['released']; suite.add( 'hashObject', diff --git a/package.json b/package.json index 0e79ebe0..9b4c3614 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "eslint-plugin-n": "^17.20.0", "eslint-plugin-prettier": "^5.0.1", "express": "^5.1.0", - "faceoff": "^1.1.0", + "faceoff": "~1.3.1", "globals": "^16.2.0", "husky": "^9.0.0", "jest": "^30.0.2",