Skip to content

Bump ts-jest from 29.4.11 to 29.4.12 in the jest group #187

Bump ts-jest from 29.4.11 to 29.4.12 in the jest group

Bump ts-jest from 29.4.11 to 29.4.12 in the jest group #187

Workflow file for this run

name: Project CICD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
run_install: false
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm run lint
- name: Run test with coverage
run: pnpm run test:cov
- name: Run Build
run: pnpm run build
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build docker image
run: docker build -t typescript-project .