[event] opened "chore: [app] bump @types/node from 22.18.12 to 22.19.0 in /app" targeting {dev} #985
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: '[event] PR' | |
| run-name: '[event] ${{ github.event.action }} "${{ github.event.pull_request.title }}" targeting {${{ github.event.pull_request.base.ref }}}' | |
| # Upon receiving a PR, this workflow will run all build and test checks required | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - beta | |
| - dev | |
| jobs: | |
| build: | |
| name: build | |
| uses: ./.github/workflows/artifacts_build-release.yml | |
| # permissions: {} | |
| permissions: # These should not be necessary - see https://github.com/orgs/community/discussions/155062 | |
| contents: write | |
| id-token: write | |
| pages: write | |
| issues: write | |
| pull-requests: write # This one is required for Docker Scout feedback on PR during build step | |
| with: | |
| all-artifacts: true | |
| release: false | |
| secrets: | |
| docker-token: ${{ secrets.DOCKER_TOKEN }} | |
| gh-token: ${{ secrets.GITHUB_TOKEN }} | |
| test: | |
| name: test | |
| needs: build | |
| uses: ./.github/workflows/artifacts_test.yml | |
| permissions: | |
| pull-requests: write # This one is required for Docker Scout feedback on PR during build step | |
| with: | |
| methods: ${{github.base_ref == 'main' && '["unit-ubuntu", "unit-macos", "e2e", "api"]' || (github.base_ref == 'beta' && '["unit-ubuntu", "e2e", "api"]' || '["unit-ubuntu", "unit-docker"]' ) }} # Only running full suite when targeting beta or main | |
| secrets: | |
| gh-token: ${{ secrets.GITHUB_TOKEN }} |