Skip to content

Commit 23ee0a0

Browse files
committed
ci: Switch to npm instead of yarn
The 0.78.2 upgrade switched from Yarn to npm.
1 parent e133866 commit 23ee0a0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
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

.github/workflows/checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
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
@@ -34,7 +34,7 @@ jobs:
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

0 commit comments

Comments
 (0)