Skip to content

chore(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 #135

chore(deps-dev): bump ts-jest from 29.1.5 to 29.2.0

chore(deps-dev): bump ts-jest from 29.1.5 to 29.2.0 #135

Workflow file for this run

name: Benchmarks Test
on:
workflow_dispatch:
push:
branches:
- master
jobs:
test:
name: Benchmarks Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: "latest"
- name: Setup Node.js@lts environment
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "pnpm"
- name: Cache Dependency
uses: actions/cache@v4
with:
path: |
~/.npm
~/.yarn
~/.cache/pnpm
~/cache
!~/cache/exclude
**/node_modules
key: pnpm-${{ runner.os }}-${{ hashFiles('package.json') }}
restore-keys: pnpm-${{ runner.os }}
- run: pnpm i --frozen-lockfile
- run: pnpm run build
- run: |
pnpm run start:benchmarks &
pnpm run test:benchmarks