Created wrapper to hold img ratio same as PromoEventCard #424
This file contains 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: Build with bratiska-cli | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
conditions: | |
name: Check for build conditions | |
uses: bratislava/github-actions/.github/workflows/build-conditions.yml@stable | |
permissions: write-all | |
strapi: | |
name: build Strapi | |
needs: conditions | |
if: needs.conditions.outputs.strapi == 'true' | |
uses: bratislava/github-actions/.github/workflows/build-with-bratiska-cli.yml@stable | |
with: | |
directory: strapi/ | |
debug: --debug | |
permissions: write-all | |
next: | |
name: build Next | |
needs: conditions | |
if: needs.conditions.outputs.next == 'true' | |
uses: bratislava/github-actions/.github/workflows/build-with-bratiska-cli.yml@stable | |
with: | |
directory: next/ | |
debug: --debug | |
permissions: write-all | |