chore: use monospace on numbers #18
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: 'Run benchmark' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
# Create new file to simulate change and test it's committing/pushing | |
- name: Create new file | |
run: | | |
echo "test" > test.txt | |
# - name: Build and run Dev Container task | |
# uses: devcontainers/[email protected] | |
# with: | |
# imageName: graphql-benchmarks | |
# push: never | |
# runCmd: | | |
# bash ./setup.sh | |
# bash ./run_benchmarks.sh | |
- name: Commit and push changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Update performance results in README.md" | |
branch: ${{ github.head_ref }} |