Skip to content

⬆️ Bump @nestjs/platform-express from 10.0.0 to 10.2.5 #29

⬆️ Bump @nestjs/platform-express from 10.0.0 to 10.2.5

⬆️ Bump @nestjs/platform-express from 10.0.0 to 10.2.5 #29

Workflow file for this run

name: 👷 Pull Requset CI
on:
pull_request:
types: [opened, synchronize]
jobs:
check_lint:
uses: ./.github/workflows/checkLint.yml
secrets: inherit
check_type:
uses: ./.github/workflows/checkType.yml
secrets: inherit
unit_test:
uses: ./.github/workflows/unitTest.yml
secrets: inherit
ready_to_review:
if: always()
needs: [check_lint, check_type, unit_test]
uses: ./.github/workflows/readyToReview.yml
secrets: inherit
with:
has_failure: ${{ needs.check_lint.result == 'failure' || needs.check_type.result == 'failure' || needs.unit_test.result == 'failure' }}