build(deps-dev): bump midnight-smoker from 1.1.1 to 1.2.2 #1372
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmarks | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
permissions: | |
contents: read | |
jobs: | |
benchmark_current: | |
name: benchmark current | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.base_ref }} | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install Modules | |
run: npm i --ignore-scripts | |
- name: Run Benchmark | |
run: npm run bench | tee current.txt | |
- name: Upload Current Results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: current | |
path: current.txt | |
benchmark_branch: | |
name: benchmark branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install Modules | |
run: npm i --ignore-scripts | |
- name: Run Benchmark | |
run: npm run bench | tee branch.txt | |
- name: Upload Branch Results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: branch | |
path: branch.txt |