🤖 [Main App](deps-dev): Bump the development-dependencies group with 3 updates #37
Workflow file for this run
This file contains 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: 'Lint, test and build pull requests' | |
on: | |
pull_request: | |
paths: | |
- '**' | |
jobs: | |
lint-and-test-and-build-job: | |
name: Lint, test and build | |
uses: ./.github/workflows/reusable-lint-and-test-and-build-job.yml | |
wait-for-required-jobs: | |
name: Wait for jobs required for pull requests to be merge-able | |
runs-on: ubuntu-latest | |
if: always() | |
needs: [lint-and-test-and-build-job] | |
steps: | |
- name: Checkout the repository so that the Bash script is accessible | |
uses: actions/checkout@v4 | |
- name: Exit 1 if one of the `needs` was a failure | |
run: ./.github/scripts/exit-1-if-result-failure-was-passed.sh "${{ toJSON(needs) }}" |