Skip to content

Commit 8e10ef8

Browse files
authored
Merge pull request #296 from sablier-labs/cache-node-module
ci: cache node modules
2 parents 8c1e6e7 + ab3d476 commit 8e10ef8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ jobs:
1818
- name: "Check out the repo"
1919
uses: "actions/checkout@v4"
2020

21+
- name:
22+
"Cache the node modules. If a match is found for the key, the cache is restored. Otherwise, a new cache will
23+
be created."
24+
uses: "actions/cache@v4"
25+
with:
26+
key: "node-modules-${{ github.sha }}"
27+
path: node_modules
28+
2129
- name: "Install Bun"
2230
uses: "oven-sh/setup-bun@v1"
2331

0 commit comments

Comments
 (0)