build(deps): bump rollup from 4.25.0 to 4.27.4 in the rollup group across 1 directory #309
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: "CI for Pull Requests" | |
on: | |
- pull_request | |
jobs: | |
run-code-analysis: | |
uses: ./.github/workflows/code_analysis.yml | |
run-unit-tests: | |
uses: ./.github/workflows/unit_tests.yml | |
with: | |
publish_test_report: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main' }} | |
secrets: | |
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }} | |
needs: | |
- run-code-analysis | |
run-docker-tests: | |
uses: ./.github/workflows/docker_tests.yml | |
needs: | |
- run-code-analysis |