chore(deps): lock file maintenance #2088
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: Analysis | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft] | |
schedule: | |
- cron: "0 11 * * 0" # 3 AM PST = 12 PM UDT, runs sundays | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests-java: | |
name: Backend Tests | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
uses: ./.github/workflows/reusable-tests-be.yml | |
tests-frontend: | |
name: Frontend Unit Tests | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
uses: ./.github/workflows/reusable-tests-fe.yml | |
repo-reports: | |
name: Repository Reports | |
uses: ./.github/workflows/reusable-tests-repo.yml | |
results: | |
name: Analysis Results | |
needs: [tests-java, tests-frontend, repo-reports] | |
runs-on: ubuntu-24.04 | |
steps: | |
- run: echo "Workflow completed successfully!" |