chore(ios): update spm from 7.0.0 to 8.0.0-beta #5504
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| setup: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-15] | |
| timeout-minutes: 30 | |
| outputs: | |
| plugins: ${{ steps.packages.outputs.paths }} | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@ce177499ccf9fd2aded3b0426c97e5434c2e8a73 | |
| with: | |
| access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get Latest | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - id: files | |
| uses: tj-actions/changed-files@v37 | |
| with: | |
| json: true | |
| write_output_files: true | |
| - id: catjson | |
| run: | | |
| echo "FILES_JSON=$(cat .github/outputs/all_changed_files.json)" >> $GITHUB_OUTPUT | |
| - id: packages | |
| uses: ./.github/actions/changed-packages | |
| with: | |
| files: ${{ steps.catjson.outputs.FILES_JSON }} | |
| lint-scripts: | |
| runs-on: macos-15 | |
| timeout-minutes: 30 | |
| needs: | |
| - setup | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - run: npm run lint | |
| lint: | |
| runs-on: macos-15 | |
| timeout-minutes: 30 | |
| needs: | |
| - setup | |
| - lint-scripts | |
| if: needs.setup.outputs.plugins != '[]' | |
| strategy: | |
| matrix: | |
| plugin: ${{ fromJson(needs.setup.outputs.plugins) }} | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - run: npm run lint | |
| working-directory: ${{ matrix.plugin }} | |
| verify-ios: | |
| runs-on: macos-15 | |
| if: needs.setup.outputs.plugins != '[]' | |
| timeout-minutes: 30 | |
| needs: | |
| - setup | |
| - lint | |
| - lint-scripts | |
| strategy: | |
| matrix: | |
| xcode: | |
| - /Applications/Xcode_16.app | |
| plugin: ${{ fromJson(needs.setup.outputs.plugins) }} | |
| steps: | |
| - run: sudo xcode-select --switch ${{ matrix.xcode }} | |
| - run: xcrun simctl list > /dev/null | |
| - run: xcodebuild -downloadPlatform iOS | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - run: npm run verify:ios | |
| working-directory: ${{ matrix.plugin }} | |
| verify-android: | |
| runs-on: ubuntu-latest | |
| if: needs.setup.outputs.plugins != '[]' | |
| timeout-minutes: 30 | |
| needs: | |
| - setup | |
| - lint | |
| - lint-scripts | |
| strategy: | |
| matrix: | |
| plugin: ${{ fromJson(needs.setup.outputs.plugins) }} | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'zulu' | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - run: npm run set-settings-gradle-for-monorepo | |
| - run: npm run verify:android | |
| working-directory: ${{ matrix.plugin }} | |
| verify-web: | |
| runs-on: ubuntu-latest | |
| if: needs.setup.outputs.plugins != '[]' | |
| timeout-minutes: 30 | |
| needs: | |
| - setup | |
| - lint | |
| - lint-scripts | |
| strategy: | |
| matrix: | |
| plugin: ${{ fromJson(needs.setup.outputs.plugins) }} | |
| steps: | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/checkout@v5 | |
| - name: Restore Dependency Cache | |
| id: cache-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| */node_modules | |
| key: ${{ runner.os }}-dependency-caching-${{ hashFiles('package.json', '*/package.json') }} | |
| - run: npm install | |
| - run: npm run verify:web | |
| working-directory: ${{ matrix.plugin }} | |
| # deploy: | |
| # runs-on: macos-latest | |
| # if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| # timeout-minutes: 30 | |
| # needs: | |
| # - setup | |
| # - lint | |
| # - verify-ios | |
| # - verify-android | |
| # - verify-web | |
| # steps: | |
| # - uses: actions/setup-node@v1 | |
| # with: | |
| # node-version: 14.x | |
| # - uses: actions/checkout@v2 | |
| # with: | |
| # fetch-depth: 0 | |
| # - name: Restore Dependency Cache | |
| # id: cache-modules | |
| # uses: actions/cache@v2 | |
| # with: | |
| # path: | | |
| # node_modules | |
| # */node_modules | |
| # key: dependency-cache-${{ hashFiles('package.json', '*/package.json') }} | |
| # - run: npm install | |
| # - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | |
| # - run: npx lerna publish from-git --yes |