Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: add yarn cache to github workflow caching #42

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- run: |
corepack enable
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- run: yarn
- run: yarn lint
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- name: Import GPG key
id: import-gpg
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- run: yarn
- run: yarn test
Expand Down Expand Up @@ -63,6 +64,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- name: Cache Xcode DerivedData
uses: irgaly/[email protected]
Expand Down Expand Up @@ -100,6 +102,7 @@ jobs:
path: |
node_modules
example/node_modules
.yarn/cache
key: node-modules
- name: Cache Gradle
id: cache_gradle
Expand Down
Loading