Skip to content

chore(deps-dev): bump ts-jest from 29.1.1 to 29.1.5 #153

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

chore(deps-dev): bump ts-jest from 29.1.1 to 29.1.5 #153

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Setup pnpm 8
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Dependencies
run: pnpm i
- name: Build Project
run: pnpm run build
- name: Run lint
run: pnpm run lint
- name: Run tests
run: pnpm run test