forked from fastify/fast-json-stringify
-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (102 loc) · 3.24 KB
/
benchmark.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Benchmark
on:
pull_request_target:
types: [labeled]
jobs:
benchmark:
if: ${{ github.event.label.name == 'benchmark' }}
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
PR-BENCH-12: ${{ steps.benchmark-pr.outputs.BENCH_RESULT12 }}
PR-BENCH-14: ${{ steps.benchmark-pr.outputs.BENCH_RESULT14 }}
PR-BENCH-16: ${{ steps.benchmark-pr.outputs.BENCH_RESULT16 }}
MAIN-BENCH-12: ${{ steps.benchmark-main.outputs.BENCH_RESULT12 }}
MAIN-BENCH-14: ${{ steps.benchmark-main.outputs.BENCH_RESULT14 }}
MAIN-BENCH-16: ${{ steps.benchmark-main.outputs.BENCH_RESULT16 }}
strategy:
matrix:
node-version: [12, 14, 16]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{github.event.pull_request.head.sha}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install --ignore-scripts
- name: Run benchmark
id: benchmark-pr
run: |
npm run --silent benchmark > ./bench-result
content=$(cat ./bench-result)
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=BENCH_RESULT${{matrix.node-version}}::$content"
# main benchmark
- uses: actions/checkout@v4
with:
ref: 'master'
- name: Install
run: |
npm install --ignore-scripts
- name: Run benchmark
id: benchmark-master
run: |
npm run --silent benchmark > ./bench-result
content=$(cat ./bench-result)
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=BENCH_RESULT${{matrix.node-version}}::$content"
output-benchmark:
needs: [benchmark]
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
message: |
**Node**: 12
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-12 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-12 }}
```
---
**Node**: 14
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-14 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-14 }}
```
---
**Node**: 16
**PR**:
```
${{ needs.benchmark.outputs.PR-BENCH-16 }}
```
**MAIN**:
```
${{ needs.benchmark.outputs.MAIN-BENCH-16 }}
```
- uses: actions-ecosystem/action-remove-labels@v1
with:
labels: |
benchmark
github_token: ${{ secrets.GITHUB_TOKEN }}