chore(deps-dev): bump the patch-dependencies group with 2 updates #1767
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
# SPDX-FileCopyrightText: 2025 DB Systel GmbH | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
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] | |
# TODO: Reactivate when test works | |
# 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-24.04 # Use Ubuntu 24.04 explicitly | |
steps: | |
- name: 🎉 Checks done | |
run: | | |
resultBuild="${{ needs.build.result }}" | |
resultLint="${{ needs.lint.result }}" | |
if [[ $resultBuild == "success" && $resultLint == "success" ]]; then | |
echo "🎉 Linting & build were successful." | |
exit 0 | |
else | |
echo "There have been problems with the Cypress tests." | |
exit 1 | |
fi | |
needs: [build, 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, build] |