Skip to content

fix(deps): update fundamental ngx and angular (major) #264

fix(deps): update fundamental ngx and angular (major)

fix(deps): update fundamental ngx and angular (major) #264

Workflow file for this run

name: ci
on:
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
concurrency:
group: ci-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test:
uses: platform-mesh/.github/.github/workflows/job-node-test.yml@9ddacafbe3260312cb1cc3f9974ad2fece8effe0
secrets: inherit # zizmor: ignore[secrets-inherit]
docker-build:
uses: platform-mesh/.github/.github/workflows/job-docker-build.yml@9ddacafbe3260312cb1cc3f9974ad2fece8effe0
with:
imageTagName: ghcr.io/platform-mesh/iam-ui
quality-gate:
if: always()
permissions: {}
needs: [test, docker-build]
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Check results
env:
TEST_RESULT: ${{ needs.test.result }}
DOCKER_BUILD_RESULT: ${{ needs.docker-build.result }}
run: |
if [[ "${TEST_RESULT}" != "success" ]]; then
echo "test failed"
exit 1
fi
if [[ "${DOCKER_BUILD_RESULT}" != "success" ]]; then
echo "docker-build failed"
exit 1
fi