Skip to content

Commit a5c1bca

Browse files
naveenskyclaude
andcommitted
Fix npm ci sync error in publish workflow
Changed npm ci to npm install and removed npm@latest upgrade to avoid version mismatches between local and CI environments. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent fe1ba84 commit a5c1bca

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jobs:
2323
node-version: '20'
2424
registry-url: 'https://registry.npmjs.org'
2525

26-
- name: Update npm
27-
run: npm install -g npm@latest
28-
2926
- name: Install dependencies
30-
run: npm ci
27+
run: npm install
3128

3229
- name: Run tests
3330
run: npm test

0 commit comments

Comments
 (0)