summaryrefslogtreecommitdiffstats
path: root/.github/workflows/bench.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/bench.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml
new file mode 100644
index 0000000..281bdc6
--- /dev/null
+++ b/.github/workflows/bench.yml
@@ -0,0 +1,43 @@
+name: Benchmarks
+on:
+ - push
+ - pull_request
+
+permissions:
+ contents: read
+
+jobs:
+ benchmark_current:
+ name: benchmark current
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
+ with:
+ persist-credentials: false
+ ref: ${{ github.base_ref }}
+ - name: Setup Node
+ uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
+ with:
+ node-version: lts/*
+ - name: Install Modules
+ run: npm i
+ - name: Run Benchmark
+ run: npm run bench
+
+ benchmark_branch:
+ name: benchmark branch
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
+ with:
+ persist-credentials: false
+ - name: Setup Node
+ uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
+ with:
+ node-version: lts/*
+ - name: Install Modules
+ run: npm i
+ - name: Run Benchmark
+ run: npm run bench