native/map/enhc : add marker animation and press callback support #12
This file contains hidden or 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 build | |
| on: | |
| pull_request: | |
| jobs: | |
| build-ios: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 'lts/*' | |
| cache: yarn | |
| - name: Setup ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2.2' | |
| bundler-cache: true | |
| working-directory: example | |
| - name: Install dependencies | |
| run: yarn --cwd example --frozen-lockfile | |
| - name: Install pods | |
| run: RCT_NEW_ARCH_ENABLED=1 bundle exec pod install | |
| working-directory: example/ios | |
| - name: Write Secrets.xcconfig | |
| run: echo MAPS_API_KEY=your_api_key_here >> example/ios/Secrets.xcconfig | |
| - name: Build iOS | |
| run: xcodebuild -workspace example/ios/rnmshowcase.xcworkspace -scheme rnmshowcase -configuration Debug -sdk iphonesimulator |