Skip to content

build(deps-dev): bump ts-jest from 29.2.3 to 29.2.5 #163

build(deps-dev): bump ts-jest from 29.2.3 to 29.2.5

build(deps-dev): bump ts-jest from 29.2.3 to 29.2.5 #163

Workflow file for this run

name: Test
on:
pull_request:
branches:
- 3.x
- 4.0.x
- 4.4.x
- 4.x
paths-ignore:
- '**.md'
push:
branches:
- 3.x
- 4.0.x
- 4.4.x
- 4.x
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['18', '20']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Enable yarn v3
run: |
corepack enable
yarn -v
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install
run: yarn install
- name: Format check
id: format-check
run: yarn format:check
- name: Build
run: yarn build
- name: Test
run: yarn test