Bump sylius/sylius from 2.2.1 to 2.2.2 #2061
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: Build | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "adr/**" | |
| - "docs/**" | |
| - "*.md" | |
| workflow_dispatch: ~ | |
| schedule: | |
| - cron: '0 3 * * *' # Daily at 03:00 UTC | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| - 'upmerge/**' | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| static-checks: | |
| name: Static checks | |
| uses: ./.github/workflows/ci_static-checks.yaml | |
| with: | |
| type: minimal | |
| ci: | |
| name: Tests | |
| needs: static-checks | |
| uses: ./.github/workflows/ci.yaml | |
| with: | |
| type: minimal | |
| ci-js: | |
| name: Javascript Tests | |
| needs: static-checks | |
| uses: ./.github/workflows/ci_js.yaml | |
| with: | |
| type: minimal |