-
-
Notifications
You must be signed in to change notification settings - Fork 231
42 lines (36 loc) · 965 Bytes
/
benchmarks.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
name: Node benchmarks
on:
workflow_dispatch:
push:
branches:
- master
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * 1'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20
- name: run benchmarks
run: |
npm install
npm start y 100 10 40
- name: compare results
run: |
node ./benchmark compare -t
node ./benchmark compare -u
- name: commit and push updated results
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'chore: update benchmark results'
force-add: 'true'
files: benchmark-results.json README.md
name: Github Actions
email: <>