Skip to content

test: perf fix

test: perf fix #174

Workflow file for this run

---
name: Main
on:
push:
branches:
- main
paths-ignore:
- "**.md"
- "img/**"
jobs:
perf:
runs-on: ubuntu-latest
if: needs.prepare-release.outputs.release_created != 'true'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup dependencies, cache and install
uses: ./.github/actions/install
- uses: google/wireit@setup-github-actions-caching/v1
- name: Build plugin
run: yarn pack
- name: Install salesforce CLI
run: npm install -g @salesforce/cli
- name: Install plugin
run: |
yarn set version classic
sfdx plugins:link .
sfdx plugins
- name: Checkout e2e test subject
uses: actions/checkout@v4
with:
ref: 'e2e/head'
fetch-depth: 0
path: ./e2e
- name: Run benchmark
run: |
yarn test:perf
git reset --hard
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Benchmark.js Benchmark
tool: 'benchmarkjs'
output-file-path: ./perf-result.txt
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
alert-threshold: '130%'
comment-on-alert: true
fail-on-alert: true
summary-always: true
alert-comment-cc-users: '@scolladon'