Skip to content

Bump ts-jest from 29.4.4 to 29.4.5 #822

Bump ts-jest from 29.4.4 to 29.4.5

Bump ts-jest from 29.4.4 to 29.4.5 #822

Workflow file for this run

name: ci
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
- uses: actions/cache@v4
id: npm-cache
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm install
- name: Test
run: npm run test:ci
- name: Build
run: npm run build