Skip to content

Commit 4c75b9f

Browse files
committed
Update Node.js setup step to use npm install instead of npm ci
1 parent 86fb35e commit 4c75b9f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ jobs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: 22
26-
cache: npm
2726

2827
- name: Install dependencies
2928
run: |
30-
npm ci --silent >/dev/null 2>&1 || {
29+
npm install --silent >/dev/null 2>&1 || {
3130
echo "Install step failed." >&2
3231
exit 1
3332
}

0 commit comments

Comments
 (0)