File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,18 @@ jobs:
1515 build_and_deploy_ios_testflight_qa :
1616 name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1717 runs-on : [macos-15]
18+ strategy :
19+ matrix :
20+ node-version : [ 24.x ]
1821 steps :
1922 - name : Connect Bot
2023 uses :
webfactory/[email protected] 2124 with :
2225 ssh-private-key : ${{ secrets.BOT_SSH_PRIVATE_KEY }}
26+ - name : Use Node.js ${{ matrix.node-version }}
27+ uses : actions/setup-node@v4
28+ with :
29+ node-version : ${{ matrix.node-version }}
2330 - uses : actions/checkout@v3
2431 - uses : maxim-lobanov/setup-xcode@v1
2532 with :
5360 build_and_deploy_android_s3 :
5461 name : Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
5562 runs-on : ubuntu-latest
63+ strategy :
64+ matrix :
65+ node-version : [ 24.x ]
5666 steps :
67+ - name : Use Node.js ${{ matrix.node-version }}
68+ uses : actions/setup-node@v4
69+ with :
70+ node-version : ${{ matrix.node-version }}
5771 - uses : actions/checkout@v2
5872 - uses : actions/setup-java@v3
5973 with :
You can’t perform that action at this time.
0 commit comments