Skip to content

Commit

Permalink
Merge pull request #455 from XantreDev/benchmarks
Browse files Browse the repository at this point in the history
Implemented benchmarks
  • Loading branch information
dcastil committed Aug 18, 2024
2 parents a72f2f4 + 3d6525b commit 34753fe
Show file tree
Hide file tree
Showing 6 changed files with 10,187 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: benchmarks

on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:

jobs:
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.11.1
- name: Use node_modules cache
uses: actions/cache@v4
with:
path: node_modules
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-node-20-lock-
- run: yarn install --frozen-lockfile
- name: Run benchmarks
uses: CodSpeedHQ/action@v3
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: 'yarn bench'
Loading

0 comments on commit 34753fe

Please sign in to comment.