Skip to content

Bump ts-jest from 29.1.4 to 29.2.2 #1282

Bump ts-jest from 29.1.4 to 29.2.2

Bump ts-jest from 29.1.4 to 29.2.2 #1282

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 20
steps:
- name: Checkout repo
uses: actions/checkout@v4.1.6
- name: Install Node
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- run: npm run package