frontend: load all dayResponsibles in one request in Dashboard.vue #3980
Workflow file for this run
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: Dependency Check | |
on: | |
push: | |
branches-ignore: | |
- gh-readonly-queue/** | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
schedule: | |
- cron: '42 3 * * *' | |
env: | |
USER_ID: 1001 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
api-check-dependencies: | |
name: 'Api Platform check dependencies' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2.12' | |
tools: composer:2.6.0 | |
coverage: xdebug | |
- run: composer update --lock --no-interaction --no-plugins --no-scripts --prefer-dist | |
working-directory: api |