Skip to content

Commit 179e3e0

Browse files
committed
Update Node setup and frontend install steps
Removes npm cache configuration from setup-node action and switches frontend dependency installation from 'npm ci' to 'npm i' in the GitHub Actions workflow.
1 parent e9a86c5 commit 179e3e0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ jobs:
1313
uses: actions/setup-node@v4
1414
with:
1515
node-version: '20'
16-
cache: 'npm'
17-
cache-dependency-path: 'web-site/package-lock.json'
1816

1917
- name: Install frontend dependencies
2018
run: |
2119
cd web-site
22-
npm ci
20+
npm i
2321
2422
- name: Build frontend
2523
run: |

0 commit comments

Comments
 (0)