style: remove trailing whitespace (#357) #338
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: 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/commit@v2.9 | |
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: <> |