Skip to content

Commit

Permalink
chore: add to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyguerra committed Jan 7, 2024
1 parent 3e97b1d commit 2cd7a0d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,27 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm test
benchmark:
name: Benchmark
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node-version:
- 20.x
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run benchmark

release:
name: Release
if: github.ref == 'refs/heads/main' && success()
Expand Down

0 comments on commit 2cd7a0d

Please sign in to comment.