Skip to content

Commit

Permalink
feat: benchmark pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Jun 21, 2024
1 parent d5d4844 commit 7252cfa
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bechmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Benchmark workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
with:
version: latest
- run: pnpm install --frozen-lockfile
- run: pnpm benchmarks

0 comments on commit 7252cfa

Please sign in to comment.