Skip to content

Commit

Permalink
[GH Actions] Remove "Install Yarn" step from Android workflows
Browse files Browse the repository at this point in the history
Summary:
This step is no longer necessary since `Yarn 1.22.19` is included on Ubuntu 22.04 runners:
{F669223}
(https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#package-management)

Test Plan: Removed step on fork and observed that subsequent `yarn ci-cleaninstall` step succeeded.

Reviewers: ashoat, tomek, marcin, jon, ginsu

Reviewed By: ashoat

Subscribers: michal

Differential Revision: https://phab.comm.dev/D8687
  • Loading branch information
atulsmadhugiri committed Aug 1, 2023
1 parent f471480 commit f675292
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 27 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: Install Yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: Install Yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/eslint_flow_jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/ios_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
- name: brew install protobuf
run: brew install protobuf

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/ios_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jobs:
- name: brew install protobuf
run: brew install protobuf

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/jsi_codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/macos_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/remove_harbormaster_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
working-directory: ./scripts
run: sudo ./install_protobuf.sh

- name: npm install -g yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/windows_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Yarn
run: npm install -g yarn

- name: yarn ci-cleaninstall
run: yarn ci-cleaninstall

Expand Down

0 comments on commit f675292

Please sign in to comment.