[MOB-66] Add play/pause controls #147
Workflow file for this run
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: iOS - Lint | |
on: | |
pull_request: | |
paths: | |
- packages/ios-client/** | |
- examples/ios/** | |
jobs: | |
ios_build_and_lint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install deps 📡 | |
run: brew install swift-format xcbeautify | |
- name: Run formatter on ios-client 🎨 | |
run: swift-format format -i -r ./**/**/*.swift --configuration swift-format-config.json | |
working-directory: ./packages/ios-client | |
- name: Run lint on ios-client 👀 | |
run: swift-format lint -r -s ./**/**/*.swift --configuration swift-format-config.json | |
working-directory: ./packages/ios-client | |
- name: Run formatter on examples/ios 🎨 | |
run: swift-format format -i -r ./**/**/*.swift --configuration swift-format-config.json | |
working-directory: ./examples/ios | |
- name: Run lint on examples/ios 👀 | |
run: swift-format lint -r -s ./**/**/*.swift --configuration swift-format-config.json | |
working-directory: ./examples/ios |