File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2323 uses : actions/setup-node@v4
2424 with :
2525 node-version-file : ' package.json'
26- cache : ' yarn '
26+ cache : ' npm '
2727 - name : Install Node dependencies
28- run : yarn install
28+ run : npm install
2929 - name : Build Application
3030 run : |
3131 echo $SECRETS_TAR_GZ_B64 | base64 -d | tar -xz -C fastlane
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ jobs:
1414 uses : actions/setup-node@v4
1515 with :
1616 node-version-file : ' package.json'
17- cache : ' yarn '
17+ cache : ' npm '
1818 - name : Install Node dependencies
19- run : yarn install
19+ run : npm install
2020 - name : Check lint rules
21- run : yarn lint
21+ run : npm run lint
2222 - name : Run JavaScript Tests
23- run : yarn test
23+ run : npm run test
2424
Original file line number Diff line number Diff line change 2323 uses : actions/setup-node@v4
2424 with :
2525 node-version-file : ' package.json'
26- cache : ' yarn '
26+ cache : ' npm '
2727 - name : Install Node dependencies
28- run : yarn install
28+ run : npm install
2929 - name : Setup Cocoapods [cache]
3030 uses : actions/cache@v4
3131 id : cocoapods-cache
3434 key : ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
3535 restore-keys : ${{ runner.os }}-pods-
3636 - name : Install CocoaPods
37- run : yarn pods
37+ run : npm run pods
3838 - name : Build Application
3939 run : |
4040 echo $SECRETS_TAR_GZ_B64 | base64 -d | tar -xz -C fastlane
You can’t perform that action at this time.
0 commit comments