fix(deps): update prisma monorepo to v7 (major) #5450
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: PR | |
| on: | |
| pull_request: | |
| concurrency: | |
| # Cancel in progress for PR open and close | |
| group: ${{ github.event.number }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| # https://github.com/bcgov/action-builder-ghcr | |
| builds: | |
| name: Builds | |
| permissions: | |
| packages: write | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| package: [backend, frontend, migrations] | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: bcgov/action-builder-ghcr@2b24ac7f95e6a019064151498660437cca3202c5 # v4.2.1 | |
| with: | |
| package: ${{ matrix.package }} | |
| tags: ${{ github.event.number }} | |
| tag_fallback: latest | |
| triggers: ('${{ matrix.package }}/') | |
| # https://github.com/bcgov/quickstart-openshift-helpers | |
| deploys: | |
| name: Deploys (${{ github.event.number }}) | |
| needs: [builds] | |
| uses: ./.github/workflows/.deployer.yml | |
| secrets: | |
| oc_namespace: ${{ secrets.OC_NAMESPACE }} | |
| oc_token: ${{ secrets.OC_TOKEN }} | |
| with: | |
| db_user: app-${{ github.event.number }} | |
| params: --set global.secrets.persist=false | |
| triggers: ('backend/' 'frontend/' 'migrations/' 'charts/' '.github/workflows/.deployer.yml') | |
| db_triggers: ('charts/crunchy/') | |
| tests: | |
| name: Tests | |
| if: needs.deploys.outputs.triggered == 'true' | |
| needs: [deploys] | |
| uses: ./.github/workflows/.tests.yml | |
| results: | |
| name: PR Results | |
| needs: [builds, deploys, tests] | |
| if: always() | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - if: contains(needs.*.result, 'failure')||contains(needs.*.result, 'canceled') | |
| run: echo "At least one job has failed." && exit 1 | |
| - run: echo "Success!" |