Skip to content

Commit 3fe5afb

Browse files
Add Node.js caching to workflows (#138)
1 parent 1dfafac commit 3fe5afb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main-migrations.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616

17+
- name: Cache Node.js modules
18+
uses: actions/cache@v3
19+
with:
20+
path: ~/.npm
21+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
22+
restore-keys: |
23+
${{ runner.os }}-node-
24+
1725
- name: Check for changes in migrations folder
1826
id: check_changes
1927
run: |
@@ -52,6 +60,14 @@ jobs:
5260
- name: Checkout repository
5361
uses: actions/checkout@v4
5462

63+
- name: Cache Node.js modules
64+
uses: actions/cache@v3
65+
with:
66+
path: ~/.npm
67+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
68+
restore-keys: |
69+
${{ runner.os }}-node-
70+
5571
- name: Set up Node.js
5672
uses: actions/setup-node@v4
5773
with:
@@ -77,6 +93,14 @@ jobs:
7793
- name: Checkout repository
7894
uses: actions/checkout@v4
7995

96+
- name: Cache Node.js modules
97+
uses: actions/cache@v3
98+
with:
99+
path: ~/.npm
100+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
101+
restore-keys: |
102+
${{ runner.os }}-node-
103+
80104
- name: Set up Node.js
81105
uses: actions/setup-node@v4
82106
with:

0 commit comments

Comments
 (0)