Skip to content

fix: update dependency ts-jest to v29.1.4 #4679

fix: update dependency ts-jest to v29.1.4

fix: update dependency ts-jest to v29.1.4 #4679

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
# cancel previous runs on the same PR
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
name: ⛷ PR tests
env:
CI: true
TARGET_SHA: ${{ github.event.pull_request.head.sha || github.event.merge_group.head_sha }}
defaults:
run:
shell: bash
jobs:
build-format-lint-test:
name: 🚀 Build, format, lint and test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_SHA }}
# We need to fetch all branches and commits so that Nx affected has a base to compare against.
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- name: Install & cache node dependencies
uses: ./.github/actions/install-node-deps
- name: '💄 Check format'
run: pnpm format-check
- name: '🧪 Test linter'
run: pnpm nx affected --targets=test-linter,test-type,test-circular
- name: '🧪 Run unit tests'
run: pnpm nx run-many --target=test-unit
- name: Install LCOV
run: |
sudo apt-get update
sudo apt-get install lcov
- name: '🔃 Merge lcov files'
run: ./scripts/merge-lcov.sh
- name: 🔎 SonarCloud Scan
if: github.event_name == 'pull_request'
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}