add tiny http (#304) #68
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 Metrics | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: install dependencies | |
run: | | |
npm install | |
- name: run metrics | |
run: | | |
npm run metrics:run | |
npm run metrics:summary | |
- name: commit and push updated results | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'master' | |
commit-message: 'chore: update metrics results' | |
force-add: 'true' | |
files: METRICS.md | |
name: Github Actions | |
email: <> |