ci: adds api v1 builds to required checks (#14345)

This commit is contained in:
Omar López
2024-04-05 23:00:01 +00:00
committed by GitHub
parent b50318fbca
commit d59e68de6d
2 changed files with 77 additions and 1 deletions
+8 -1
View File
@@ -56,6 +56,13 @@ jobs:
uses: ./.github/workflows/production-build.yml
secrets: inherit
build-api-v1:
name: Production build
needs: [changes]
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/api-v1-production-build.yml
secrets: inherit
build-without-database:
name: Production build (without database)
needs: [changes]
@@ -99,7 +106,7 @@ jobs:
secrets: inherit
required:
needs: [changes, lint, type-check, test, build, e2e, e2e-embed, e2e-embed-react, e2e-app-store]
needs: [changes, lint, type-check, test, build, build-api-v1, e2e, e2e-embed, e2e-embed-react, e2e-app-store]
if: always()
runs-on: buildjet-4vcpu-ubuntu-2204
steps: