Skip to content

⬆️ Bump eslint from 8.47.0 to 8.49.0 #42

⬆️ Bump eslint from 8.47.0 to 8.49.0

⬆️ Bump eslint from 8.47.0 to 8.49.0 #42

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' }}