bench #431
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: bench | |
on: | |
schedule: | |
- cron: 0 */6 * * * | |
push: | |
branches: | |
- main | |
jobs: | |
hello_bench: | |
name: 'Hello, bench!' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: vx.x.x | |
- name: Install Oha | |
uses: baptiste0928/cargo-install@v1 | |
with: | |
crate: oha | |
version: 0.6.0 | |
- name: Init import_map | |
run: cp import_map.json.prod import_map.json | |
- name: Generate internal benchmarks | |
run: deno task bench | |
- name: Push changes | |
uses: actions-js/push@v1 | |
with: | |
github_token: '${{ secrets.GITHUB_TOKEN }}' | |
branch: main | |
- name: Run hydrate | |
run: deno task hydrate | |
- name: Deploy to Deno Deploy | |
uses: denoland/deployctl@v1 | |
with: | |
project: fastro | |
entrypoint: app/main.ts |