Skip to content

Implement Number.prototype.toFixed() #36

Implement Number.prototype.toFixed()

Implement Number.prototype.toFixed() #36

Workflow file for this run

name: Benchmarks
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
benchmarks:
name: Benchmarks
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v3
with:
path: |
target
~/.cargo/git
~/.cargo/registry
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: boa-dev/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branchName: ${{ github.base_ref }}