mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
123d7d4229
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45547 Was missing the step to checkout the repo before running yarn. Changelog: [Internal] Reviewed By: sammy-SC, realsoelynn Differential Revision: D59979543 fbshipit-source-id: 2ab52efbc655cb6ff7b6544ff3939c019c5d45a6
19 lines
382 B
YAML
19 lines
382 B
YAML
name: Update node modules cache
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
update_node_modules_cache:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install yarn dependencies and update cache
|
|
uses: ./.github/actions/yarn-install-with-cache
|
|
with:
|
|
update-cache: "true"
|