Skip to content

fix(schema): update PostNL BE base schema validation rules (#329) #463

fix(schema): update PostNL BE base schema validation rules (#329)

fix(schema): update PostNL BE base schema validation rules (#329) #463

Workflow file for this run

name: 'On push ⚙️'
on:
push:
branches:
- main
- alpha
- beta
- rc
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Run setup initially to save cache and time on subsequent jobs
setup:
uses: ./.github/workflows/--setup.yml
secrets: inherit
test-unit:
needs: setup
uses: ./.github/workflows/--test-unit.yml
secrets: inherit
test-integration:
needs: setup
uses: ./.github/workflows/--test-integration.yml
secrets: inherit
analyse:
needs: setup
uses: ./.github/workflows/--analyse.yml
secrets: inherit
quality:
needs: setup
uses: ./.github/workflows/--quality.yml
secrets: inherit
with:
dry-run: true
rebase-prs:
needs:
- test-unit
- test-integration
- analyse
- quality
uses: ./.github/workflows/--rebase-prs.yml
secrets: inherit
notify-on-failure:
needs:
- setup
- test-unit
- test-integration
- analyse
- quality
if: always() && contains(needs.*.result, 'failure')
uses: myparcelnl/actions/.github/workflows/notify-on-failure.yml@v4
secrets: inherit