Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐎 Make ci quick #1139

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
env:
BACKEND_IMAGE_NAME: scrumteamzgw/zaakafhandelcomponent
FRONTEND_IMAGE_NAME: scrumteamzgw/zac-ui
time: 3
continue: true

jobs:
check_files_changed:
Expand Down Expand Up @@ -123,17 +125,21 @@ jobs:

backend-docker:
needs: backend-tests
timeout-minutes: 10
if: always()

name: Build (and push) backend Docker image
runs-on: ubuntu-latest

steps:
-
name: Checkout
- name: fail if conditional job failed
if: ${{ needs.backend-tests.result == 'failure' }}
run: exit 1

- name: Checkout
uses: actions/checkout@v2

-
name: Construct tag
- name: Construct tag
id: vars
run: |
# Strip git ref prefix from version
Expand Down
Loading