chore(deps-dev): bump lint-staged from 16.2.4 to 16.2.5 in the patch-dependencies group #3465
Workflow file for this run
  
    
      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: Default push workflow | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| init: | |
| uses: ./.github/workflows/00-init.yml | |
| scan-secrets: | |
| if: github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui' | |
| uses: ./.github/workflows/00-scan-secrets.yml | |
| lint: | |
| uses: ./.github/workflows/01-lint.yml | |
| needs: [init] | |
| test: | |
| uses: ./.github/workflows/01-test.yml | |
| needs: [init] | |
| build: | |
| uses: ./.github/workflows/01-build.yml | |
| needs: [init] | |
| checks-done: | |
| if: ${{ always() }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🎉 Checks done | |
| run: | | |
| resultBuild="${{ needs.build.result }}" | |
| resultTest="${{ needs.test.result }}" | |
| resultLint="${{ needs.lint.result }}" | |
| if [[ $resultBuild == "success" && $resultTest == "success" && $resultLint == "success" ]]; then | |
| echo "🎉 All tests & build were successful." | |
| exit 0 | |
| else | |
| echo "Some tests were failing." | |
| exit 1 | |
| fi | |
| needs: [build, test, lint] | |
| deploy: | |
| uses: ./.github/workflows/02-deploy-gh-pages.yml | |
| if: ${{ github.actor != 'dependabot[bot]' && (github.event.pull_request == null || github.event.pull_request.head.repo.owner.login == 'db-ui') }} | |
| needs: [lint, test, build] |