mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
chore: add historical performance benchmarking (#1432)
This commit is contained in:
43
.github/workflows/performance.yaml
vendored
43
.github/workflows/performance.yaml
vendored
@@ -6,13 +6,13 @@ on:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
hyperfine:
|
||||
latest-vs-next:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install Dependencies
|
||||
run: npm ci
|
||||
@@ -38,4 +38,41 @@ jobs:
|
||||
uses: thollander/actions-comment-pull-request@v2
|
||||
with:
|
||||
filePath: benchmark_check.md
|
||||
comment_tag: hyperfine-comparison
|
||||
comment_tag: latest-vs-next-comparison
|
||||
|
||||
historical-versions:
|
||||
# Run only on release branch (changeset-release/main):
|
||||
if: github.head_ref == 'changeset-release/main'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install Dependencies
|
||||
run: npm ci
|
||||
- name: Install External
|
||||
run: npm i -g hyperfine
|
||||
- name: Prepare
|
||||
run: |
|
||||
npm run compile
|
||||
npm run pack:prepare
|
||||
cd benchmark/
|
||||
npm i
|
||||
npm run make-test
|
||||
- name: Run Benchmark
|
||||
run: |
|
||||
cd benchmark/
|
||||
npm test
|
||||
cat benchmark_check.md
|
||||
env:
|
||||
CI: true
|
||||
REDOCLY_TELEMETRY: off
|
||||
|
||||
- name: Comment PR
|
||||
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
|
||||
uses: thollander/actions-comment-pull-request@v2
|
||||
with:
|
||||
filePath: benchmark/benchmark_check.md
|
||||
comment_tag: historical-versions-comparison
|
||||
|
||||
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
@@ -199,7 +199,7 @@ jobs:
|
||||
|
||||
- name: Send to a Slack channel
|
||||
id: slack
|
||||
uses: slackapi/slack-github-action@v1.23.0
|
||||
uses: slackapi/slack-github-action@v1.25.0
|
||||
with:
|
||||
channel-id: C019K52TC0L #releases
|
||||
payload-file-path: './output/release-message.json'
|
||||
|
||||
10
.github/workflows/tests.yaml
vendored
10
.github/workflows/tests.yaml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
@@ -35,7 +35,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
@@ -56,7 +56,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Coverage Report
|
||||
uses: artiomtr/jest-coverage-report-action@v2.0.8
|
||||
@@ -72,7 +72,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
@@ -86,7 +86,7 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
node-version: 20
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
Reference in New Issue
Block a user