Skip to content

Commit 4e39190

Browse files
amirhkclaude
andcommitted
fix: remove npm lock file requirement from CI workflow
Switch from npm ci to npm install and remove cache: npm from setup-node, since no package-lock.json exists in the repo. This unblocks the GitHub Actions build and the subsequent GitHub Pages deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3f7cc29 commit 4e39190

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,9 @@ jobs:
2626
uses: actions/setup-node@v4
2727
with:
2828
node-version: 20
29-
cache: npm
3029

3130
- name: Install dependencies
32-
run: npm ci
31+
run: npm install
3332

3433
- name: Build
3534
run: npm run build

0 commit comments

Comments
 (0)