build(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /chat-backend #160
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: Check Screenshots Dimensions for Apple Store and Google Play Store | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-screenshots-dimensions-apple-store: | |
name: Check screenshots Dimensions Apple Store | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Screenshots Dimensions for Apple Store | |
run: bash ./scripts/check-screenshots-dimensions/check-screenshots-dimensions.sh ./chat-application/ios/fastlane/screenshots/fr-FR/ | |
shell: bash | |
check-screenshots-dimensions-google-play-store: | |
name: Check screenshots Dimensions Google Play Store | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check Screenshots Dimensions for Google Play Store Phone Screenshots | |
run: bash ./scripts/check-screenshots-dimensions/check-screenshots-dimensions.sh ./chat-application/android/fastlane/metadata/android/fr-FR/images/phoneScreenshots/ | |
shell: bash | |
- name: Check Screenshots Dimensions for Google Play Store Seven Inch Screenshots | |
run: bash ./scripts/check-screenshots-dimensions/check-screenshots-dimensions.sh ./chat-application/android/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/ | |
shell: bash | |
- name: Check Screenshots Dimensions for Google Play Store Ten Inch Screenshots | |
run: bash ./scripts/check-screenshots-dimensions/check-screenshots-dimensions.sh ./chat-application/android/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/ | |
shell: bash |