-
Notifications
You must be signed in to change notification settings - Fork 4
43 lines (42 loc) · 1.27 KB
/
benchmark.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
name: Benchmark
on:
push:
branches-ignore:
- master
jobs:
benchmark:
name: Run JavaScript benchmark
runs-on: ubuntu-latest
steps:
- uses: mskelton/setup-yarn@v1
with:
node-version: lts/*
flags: --immutable-cache
cache: yarn
- name: Run benchmark
run: yarn benchmark
- name: Download previous benchmark data
uses: actions/cache@v3
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Copy master benchmark data
run: |
if test -f ./cache/benchmark-data.json; then
cp ./cache/benchmark-data.json ./cache/benchmark-master-data.json
fi
- name: Compare with master
uses: benchmark-action/github-action-benchmark@v1
with:
name: Compare with master
tool: "benchmarkjs"
output-file-path: benchmark/output.txt
external-data-json-path: ./cache/benchmark-master-data.json
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: false
# Show alert with commit comment on detecting possible performance regression
alert-threshold: "130%"
comment-on-alert: true
comment-always: true
fail-on-alert: true