Skip to content

Commit 1b05648

Browse files
committed
Switch to npm install in deploy workflow
Replaces 'npm ci' with 'npm install' in the GitHub Actions deploy workflow to allow for more flexible dependency installation. Also adds 'gh-pages' and related dependencies to package-lock.json for deployment support.
1 parent 02055ff commit 1b05648

File tree

2 files changed

+372
-1
lines changed

2 files changed

+372
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: 'npm'
3030

3131
- name: Install dependencies
32-
run: npm ci
32+
run: npm install
3333

3434
- name: Build
3535
run: npm run build

0 commit comments

Comments
 (0)