This repository was archived by the owner on Oct 26, 2025. It is now read-only.
deps(dev): update dependency ts-jest to v29.4.5 #3410
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Climate | |
| # Events that trigger this workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| # Defines which tool versions should be used in all workflow jobs | |
| env: | |
| node: '18' | |
| pnpm: '7' | |
| jobs: | |
| code-climate-report: | |
| name: Report | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| steps: | |
| - name: Checkout 📥 | |
| uses: actions/checkout@v3.6.0 | |
| - name: Setup PNPM 💿 | |
| uses: pnpm/action-setup@v2.4.1 | |
| with: | |
| version: ${{ env.pnpm }} | |
| - name: Setup Node 💿 | |
| uses: actions/setup-node@v3.8.2 | |
| with: | |
| node-version: ${{ env.node }} | |
| cache: 'pnpm' | |
| - name: Install dependencies 📚 | |
| run: pnpm install | |
| - name: Build packages 📦 | |
| run: pnpm build | |
| - name: Generate and publish code coverage to code climate 📠 | |
| uses: paambaati/codeclimate-action@v3.2.0 | |
| env: | |
| CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_REPORTER_ID }} | |
| with: | |
| coverageCommand: pnpm test:unit |