Skip to content

Commit

Permalink
Merge pull request #2 from robandpdx-org/convert-facebook-react-nativ…
Browse files Browse the repository at this point in the history
…e-website-to-actions

do it
  • Loading branch information
jk0 authored May 10, 2024
2 parents 54b01f0 + 794ef70 commit 7843268
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/restore_cache_checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ runs:
- name: restore_cache
uses: actions/[email protected]
with:
key: v1-repo-{{ .Environment.${{ github.sha }} }}
key: v1-repo-${{ github.sha }}
path: UPDATE_ME
4 changes: 2 additions & 2 deletions .github/actions/run_yarn/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ runs:
- name: restore_cache
uses: actions/[email protected]
with:
key: v1-yarn-{{ .Branch }}
key: v1-yarn-${{ github.base_ref }}
path: UPDATE_ME
restore-keys: v1-yarn-{{ .Branch }}
restore-keys: v1-yarn-${{ github.base_ref }}
- name: Yarn Install
run: yarn install --frozen-lockfile --no-progress --non-interactive --cache-folder ~/.cache/yarn
working-directory: "~/react-native-website"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/[email protected]
with:
path: "~/react-native-website"
key: v1-repo-{{ .Environment.${{ github.sha }} }}
key: v1-repo-${{ github.sha }}
lint:
defaults:
run:
Expand Down

0 comments on commit 7843268

Please sign in to comment.